/**
 * Glogglz Main Styles
 * 
 * Header, Footer, Navigation, and Layout
 * 
 * @package Glogglz
 * @since 1.0.0
 */

/* ==========================================================================
   SKIP LINK
   ========================================================================== */
.gl-skip-link {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    padding: 12px 24px;
    background: var(--gl-brand);
    color: var(--gl-gray-900);
    font-weight: 700;
    text-decoration: none;
    z-index: 100000;
    border-radius: var(--gl-radius-lg);
}

.gl-skip-link:focus {
    top: 10px;
}

/* ==========================================================================
   ANNOUNCEMENT BAR
   ========================================================================== */
.gl-announcement {
    background: linear-gradient(135deg, var(--gl-brand-light) 0%, var(--gl-brand) 100%);
    color: var(--gl-gray-900);
    padding: 10px 0;
    text-align: center;
    font-size: 0.875rem;
    font-weight: 600;
}

.gl-announcement__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.gl-announcement a {
    color: var(--gl-gray-900);
    text-decoration: underline;
}

/* ==========================================================================
   HEADER
   ========================================================================== */
.gl-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--gl-border-light);
    box-shadow: 0 2px 10px rgba(6, 182, 212, 0.1);
}

.gl-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    height: var(--gl-header-height);
}

/* Logo */
.gl-header__logo {
    flex-shrink: 0;
}

.gl-header__logo a {
    display: flex;
    align-items: center;
}

.gl-header__logo img {
    height: 40px;
    width: auto;
}

.gl-header__logo-text {
    display: flex;
    align-items: baseline;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--gl-gray-900);
    text-decoration: none;
    letter-spacing: 0.1em;
}

.gl-header__logo-brand {
    color: var(--gl-brand);
}

.gl-header__logo-text sup {
    font-size: 0.5em;
    margin-left: 2px;
    color: var(--gl-gray-500);
}

/* Navigation */
.gl-header__nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.gl-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.gl-nav > li {
    position: relative;
}

.gl-nav > li > a {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 10px 16px;
    color: var(--gl-gray-700);
    font-size: 0.9375rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    border-radius: var(--gl-radius-lg);
    transition: all var(--gl-transition-base);
}

.gl-nav > li > a:hover,
.gl-nav > li.current-menu-item > a,
.gl-nav > li.current-menu-ancestor > a {
    color: var(--gl-brand);
    background: rgba(255, 215, 0, 0.15);
}

/* Dropdown */
.gl-nav .sub-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    min-width: 220px;
    background: var(--gl-white);
    border: 1px solid var(--gl-border);
    border-radius: var(--gl-radius-xl);
    padding: 12px;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transition: all var(--gl-transition-base);
    box-shadow: var(--gl-shadow-xl);
}

.gl-nav > li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.gl-nav .sub-menu li a {
    display: block;
    padding: 10px 16px;
    color: var(--gl-gray-700);
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: var(--gl-radius-md);
    transition: all var(--gl-transition-fast);
}

.gl-nav .sub-menu li a:hover {
    color: var(--gl-brand);
    background: rgba(255, 215, 0, 0.15);
}

/* Header Actions */
.gl-header__actions {
    display: flex;
    align-items: center;
    gap: 4px;
}

.gl-header__action {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    color: var(--gl-gray-700);
    cursor: pointer;
    border-radius: var(--gl-radius-lg);
    transition: all var(--gl-transition-base);
    text-decoration: none;
}

.gl-header__action:hover {
    color: var(--gl-brand);
    background: rgba(255, 215, 0, 0.15);
}

/* Cart Count */
.gl-header__cart-count {
    position: absolute;
    top: 4px;
    right: 4px;
}

/* Mobile Menu Toggle */
.gl-header__menu-icon {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 22px;
    height: 22px;
}

.gl-header__menu-icon span {
    display: block;
    height: 2px;
    background: currentColor;
    border-radius: 1px;
    transition: all var(--gl-transition-base);
}

.gl-header__menu-toggle[aria-expanded="true"] .gl-header__menu-icon span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.gl-header__menu-toggle[aria-expanded="true"] .gl-header__menu-icon span:nth-child(2) {
    opacity: 0;
}

.gl-header__menu-toggle[aria-expanded="true"] .gl-header__menu-icon span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ==========================================================================
   SEARCH OVERLAY
   ========================================================================== */
.gl-search-overlay {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--gl-white);
    border-bottom: 1px solid var(--gl-border);
    padding: 24px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--gl-transition-base);
    box-shadow: var(--gl-shadow-md);
}

.gl-search-overlay[aria-hidden="false"] {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.gl-search-overlay__inner {
    display: flex;
    align-items: center;
    gap: 16px;
}

.gl-search-form {
    flex: 1;
    display: flex;
    align-items: center;
    background: var(--gl-gray-50);
    border: 1px solid var(--gl-border);
    border-radius: var(--gl-radius-xl);
    overflow: hidden;
}

.gl-search-form__input {
    flex: 1;
    padding: 14px 20px;
    background: transparent;
    border: none;
    color: var(--gl-gray-900);
    font-size: 1rem;
}

.gl-search-form__input::placeholder {
    color: var(--gl-gray-500);
}

.gl-search-form__input:focus {
    outline: none;
}

.gl-search-form__submit {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--gl-brand);
    border: none;
    color: var(--gl-gray-900);
    cursor: pointer;
    transition: background var(--gl-transition-base);
}

.gl-search-form__submit:hover {
    background: var(--gl-brand-light);
}

.gl-search-overlay__close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: transparent;
    border: 1px solid var(--gl-border);
    color: var(--gl-gray-500);
    cursor: pointer;
    border-radius: var(--gl-radius-lg);
    transition: all var(--gl-transition-base);
}

.gl-search-overlay__close:hover {
    border-color: var(--gl-brand);
    color: var(--gl-brand);
}

/* ==========================================================================
   AJAX SEARCH RESULTS
   ========================================================================== */
.gl-search-form {
    position: relative;
}

.gl-ajax-search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--gl-white);
    border: 1px solid var(--gl-border);
    border-radius: var(--gl-radius-lg);
    box-shadow: var(--gl-shadow-xl);
    margin-top: 8px;
    max-height: 600px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
}

.gl-ajax-search-loading,
.gl-ajax-search-error,
.gl-ajax-search-no-results {
    padding: 24px;
    text-align: center;
    color: var(--gl-gray-600);
}

.gl-ajax-search-loading .gl-spinner {
    margin: 0 auto;
}

.gl-ajax-search-suggestions {
    padding: 8px 0;
}

.gl-ajax-search-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    text-decoration: none;
    color: inherit;
    transition: background-color var(--gl-transition-base);
    border-bottom: 1px solid var(--gl-border-light);
}

.gl-ajax-search-item:last-child {
    border-bottom: none;
}

.gl-ajax-search-item:hover {
    background: var(--gl-bg-tertiary);
}

.gl-ajax-search-item__image {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: var(--gl-radius-md);
    overflow: hidden;
    border: 1px solid var(--gl-border);
}

.gl-ajax-search-item__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gl-ajax-search-item__content {
    flex: 1;
    min-width: 0;
}

.gl-ajax-search-item__title {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--gl-gray-900);
    margin: 0 0 4px 0;
    line-height: 1.4;
}

.gl-ajax-search-item__title mark {
    background: var(--gl-brand-light);
    color: var(--gl-gray-900);
    padding: 0 2px;
    font-weight: 700;
}

.gl-ajax-search-item__rating {
    display: flex;
    gap: 2px;
    margin-bottom: 4px;
}

.gl-ajax-search-item__rating .gl-star {
    display: flex;
    color: var(--gl-gray-300);
    line-height: 1;
}

.gl-ajax-search-item__rating .gl-star svg {
    width: 14px;
    height: 14px;
}

.gl-ajax-search-item__rating .gl-star--full {
    color: var(--gl-brand);
}

.gl-ajax-search-item__rating .gl-star--half svg {
    color: var(--gl-brand);
    opacity: 0.5;
}

.gl-ajax-search-item__rating .gl-star--empty {
    color: var(--gl-gray-300);
}

.gl-ajax-search-item__price {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--gl-brand);
    margin-top: 4px;
}

.gl-ajax-search-item__price del {
    color: var(--gl-gray-500);
    font-weight: 400;
    margin-right: 6px;
}

.gl-ajax-search-view-all {
    display: block;
    padding: 16px;
    text-align: center;
    font-weight: 600;
    color: var(--gl-ocean);
    text-decoration: none;
    border-top: 1px solid var(--gl-border);
    transition: background-color var(--gl-transition-base);
}

.gl-ajax-search-view-all:hover {
    background: var(--gl-bg-tertiary);
}

@media (max-width: 768px) {
    .gl-ajax-search-results {
        max-height: 400px;
    }
    
    .gl-ajax-search-item {
        padding: 10px 12px;
    }
    
    .gl-ajax-search-item__image {
        width: 50px;
        height: 50px;
    }
    
    .gl-ajax-search-item__title {
        font-size: 0.875rem;
    }
}

/* ==========================================================================
   MOBILE MENU
   ========================================================================== */
.gl-mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 99998;
    visibility: hidden;
    pointer-events: none;
}

.gl-mobile-menu[aria-hidden="false"] {
    visibility: visible;
    pointer-events: auto;
}

.gl-mobile-menu__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    transition: background var(--gl-transition-slow);
}

.gl-mobile-menu[aria-hidden="false"] .gl-mobile-menu__overlay {
    background: rgba(6, 182, 212, 0.3);
    backdrop-filter: blur(4px);
}

.gl-mobile-menu__drawer {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    max-width: 320px;
    background: var(--gl-white);
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    box-shadow: 4px 0 20px rgba(15, 23, 42, 0.1);
}

.gl-mobile-menu[aria-hidden="false"] .gl-mobile-menu__drawer {
    transform: translateX(0);
}

.gl-mobile-menu__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid var(--gl-border);
}

.gl-mobile-menu__title {
    font-size: 1.125rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--gl-gray-900);
}

.gl-mobile-menu__close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 1px solid var(--gl-border);
    color: var(--gl-gray-400);
    cursor: pointer;
    border-radius: var(--gl-radius-md);
}

.gl-mobile-menu__nav {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
}

.gl-mobile-nav {
    list-style: none;
    margin: 0;
    padding: 0;
}

.gl-mobile-nav li {
    border-bottom: 1px solid var(--gl-border);
}

.gl-mobile-nav li:last-child {
    border-bottom: none;
}

.gl-mobile-nav a {
    display: block;
    padding: 16px 8px;
    color: var(--gl-gray-600);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: color var(--gl-transition-fast);
}

.gl-mobile-nav a:hover,
.gl-mobile-nav .current-menu-item > a {
    color: var(--gl-brand);
}

.gl-mobile-nav .sub-menu {
    list-style: none;
    margin: 0;
    padding: 0 0 0 16px;
}

.gl-mobile-nav .sub-menu a {
    padding: 12px 8px;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--gl-gray-400);
}

.gl-mobile-menu__footer {
    padding: 16px 24px;
    border-top: 1px solid var(--gl-border);
}

.gl-mobile-menu__link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    color: var(--gl-gray-700);
    font-weight: 600;
    text-decoration: none;
}

.gl-mobile-menu__link:hover {
    color: var(--gl-brand);
}

/* ==========================================================================
   FOOTER - Professional Dark Design
   ========================================================================== */
.gl-footer {
    background: #0F172A;
    color: #94A3B8;
}

/* Footer USPs Bar - Yellow with dark text */
.gl-footer__usps {
    background: var(--gl-brand);
    padding: 14px 0;
}

.gl-footer__usps-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
}

@media (max-width: 768px) {
    .gl-footer__usps-grid {
        gap: 12px 20px;
    }
}

.gl-footer__usp {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #0F172A;
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.gl-footer__usp svg {
    color: #0F172A;
    flex-shrink: 0;
    stroke-width: 2.5;
}

/* Footer Main */
.gl-footer__main {
    padding: 50px 0 40px;
}

/* 
 * Footer Grid - Higher specificity to override any theme/plugin defaults
 * Using .gl-footer context for cascade control
 */
.gl-footer .gl-footer__grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 32px 40px;
    align-items: start;
}

@media (max-width: 1024px) {
    .gl-footer .gl-footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 640px) {
    .gl-footer .gl-footer__grid {
        grid-template-columns: 1fr;
        gap: 28px;
        text-align: center;
    }
}

/* Footer Brand - Logo Styling */
.gl-footer .gl-footer__brand {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.gl-footer__logo {
    display: inline-flex;
    align-items: baseline;
    text-decoration: none;
    gap: 2px;
}

.gl-footer__logo-text {
    font-size: 2rem;
    font-weight: 900;
    color: var(--gl-brand);
    letter-spacing: 0.08em;
    line-height: 1;
    transition: color var(--gl-transition-base);
}

.gl-footer__logo:hover .gl-footer__logo-text {
    color: #E8C200;
}

.gl-footer__logo-r {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
    margin-left: 2px;
}

@media (max-width: 640px) {
    .gl-footer__brand {
        align-items: center;
    }
    
    .gl-footer__logo {
        justify-content: center;
    }
}

.gl-footer__tagline {
    color: #64748B;
    font-size: 0.875rem;
    line-height: 1.5;
    margin: 4px 0 0;
}

.gl-footer__social {
    display: flex;
    gap: 10px;
    margin-top: 12px;
}

@media (max-width: 640px) {
    .gl-footer__social {
        justify-content: center;
    }
}

.gl-footer__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #94A3B8;
    border-radius: var(--gl-radius-md);
    transition: all var(--gl-transition-base);
}

.gl-footer__social-link:hover {
    background: var(--gl-brand);
    border-color: var(--gl-brand);
    color: #0F172A;
    transform: translateY(-2px);
}

/* Footer Links */
.gl-footer__links {
    display: flex;
    flex-direction: column;
}

.gl-footer__links-title {
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #FFFFFF;
    margin: 0 0 20px;
}

.gl-footer__links-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.gl-footer__links-list li {
    margin-bottom: 10px;
}

.gl-footer__links-list li:last-child {
    margin-bottom: 0;
}

.gl-footer__links-list a {
    color: #94A3B8;
    font-size: 0.9rem;
    text-decoration: none;
    transition: color var(--gl-transition-fast);
}

.gl-footer__links-list a:hover {
    color: var(--gl-brand);
}

/* Newsletter - Ensure it stays in grid */
.gl-footer .gl-footer__newsletter {
    display: flex;
    flex-direction: column;
}

.gl-footer__newsletter-text {
    color: #94A3B8;
    font-size: 0.875rem;
    margin: 0 0 14px;
    line-height: 1.5;
}

.gl-footer .gl-footer__newsletter-form {
    display: flex;
    flex-direction: row;
    gap: 0;
    max-width: 280px;
}

@media (max-width: 640px) {
    .gl-footer .gl-footer__newsletter {
        text-align: center;
        align-items: center;
    }
    
    .gl-footer__newsletter-form {
        max-width: 100%;
        justify-content: center;
    }
}

.gl-footer__newsletter-input {
    flex: 1;
    min-width: 0;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-right: none;
    border-radius: 6px 0 0 6px;
    color: #FFFFFF;
    font-size: 0.875rem;
}

.gl-footer__newsletter-input::placeholder {
    color: #64748B;
}

.gl-footer__newsletter-input:focus {
    outline: none;
    border-color: var(--gl-brand);
    background: rgba(255, 255, 255, 0.12);
}

.gl-footer .gl-footer__newsletter-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    background: var(--gl-brand);
    border: 1px solid var(--gl-brand);
    color: #0F172A;
    cursor: pointer;
    border-radius: 0 6px 6px 0;
    transition: all var(--gl-transition-base);
    font-weight: 600;
}

.gl-footer__newsletter-btn:hover {
    background: var(--gl-brand-light);
    border-color: var(--gl-brand-light);
}

/* Footer Bottom */
.gl-footer__bottom {
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.gl-footer__bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.gl-footer__copyright {
    color: #64748B;
    font-size: 0.8125rem;
    margin: 0;
}

.gl-footer__legal-menu {
    display: flex;
    gap: 24px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.gl-footer__legal-menu li {
    margin: 0;
}

.gl-footer__legal-menu a {
    color: #64748B;
    font-size: 0.8125rem;
    text-decoration: none;
    transition: color var(--gl-transition-fast);
}

.gl-footer__legal-menu a:hover {
    color: var(--gl-brand);
}

.gl-footer__payments {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.gl-footer__payment-pill {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #94A3B8;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

@media (max-width: 768px) {
    .gl-footer__bottom-inner {
        flex-direction: column;
        text-align: center;
    }
    
    .gl-footer__legal-menu {
        justify-content: center;
    }
    
    .gl-footer__payments {
        justify-content: center;
    }
}

/* ==========================================================================
   HERO SECTION - Full Width Background Image (Compact)
   ========================================================================== */
.gl-hero {
    position: relative;
    min-height: 70vh; /* Reduced from 90vh - less scrolling needed */
    max-height: 650px; /* Cap the maximum height */
    display: flex;
    align-items: center;
    overflow: hidden;
}

@media (max-width: 768px) {
    .gl-hero {
        min-height: 60vh;
        max-height: none;
    }
}

.gl-hero__bg {
    position: absolute;
    inset: 0;
}

.gl-hero__bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%; /* Position to show the interesting part */
}

.gl-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(15, 23, 42, 0.8) 0%,
        rgba(15, 23, 42, 0.5) 50%,
        rgba(15, 23, 42, 0.2) 100%
    );
}

@media (max-width: 768px) {
    .gl-hero__overlay {
        background: rgba(15, 23, 42, 0.7);
    }
}

.gl-hero__content {
    position: relative;
    z-index: 1;
    max-width: 550px;
    padding: 60px 0; /* Reduced padding */
}

@media (max-width: 768px) {
    .gl-hero__content {
        padding: 40px 0;
        text-align: center;
    }
}

.gl-hero__badge {
    display: inline-block;
    padding: 8px 16px;
    background: var(--gl-brand);
    color: #0F172A;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: var(--gl-radius-full);
    margin-bottom: 24px;
}

.gl-hero__title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    margin: 0 0 20px;
    color: #FFFFFF;
}

.gl-hero__subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 32px;
    line-height: 1.7;
}

.gl-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    .gl-hero__actions {
        justify-content: center;
    }
}

/* Hero Trust Indicators */
.gl-hero__trust {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

@media (max-width: 768px) {
    .gl-hero__trust {
        justify-content: center;
    }
}

.gl-hero__trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    font-weight: 500;
}

.gl-hero__trust-item svg {
    color: var(--gl-brand);
}

/* Outline Light Button for Hero */
.gl-btn--outline-light {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #FFFFFF;
}

.gl-btn--outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    color: #FFFFFF;
}

/* ==========================================================================
   TRUST BAR
   ========================================================================== */
/* 
 * Trust Bar - High specificity to ensure consistent display
 * across different page templates and plugin contexts
 */
section.gl-trust-bar,
.gl-trust-bar {
    background: #FFFFFF;
    border-top: 1px solid #E2E8F0;
    border-bottom: 1px solid #E2E8F0;
    padding: 20px 0;
}

.gl-trust-bar .gl-trust-bar__inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 24px;
}

@media (max-width: 768px) {
    .gl-trust-bar .gl-trust-bar__inner {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px 16px;
        justify-items: start;
    }
    
    .gl-trust-bar .gl-trust-bar__item {
        gap: 10px;
    }
    
    .gl-trust-bar .gl-trust-bar__icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
    }
    
    .gl-trust-bar .gl-trust-bar__icon svg {
        width: 20px;
        height: 20px;
    }
    
    .gl-trust-bar__text strong {
        font-size: 0.8125rem;
    }
    
    .gl-trust-bar__text span {
        font-size: 0.6875rem;
    }
}

.gl-trust-bar .gl-trust-bar__item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 14px;
}

.gl-trust-bar .gl-trust-bar__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: rgba(255, 215, 0, 0.15);
    border-radius: 12px;
    color: #C9A000;
    flex-shrink: 0;
}

.gl-trust-bar .gl-trust-bar__icon svg {
    width: 24px;
    height: 24px;
    stroke-width: 2;
    flex-shrink: 0;
}

.gl-trust-bar .gl-trust-bar__text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.gl-trust-bar__text strong {
    font-size: 0.9375rem;
    font-weight: 700;
    color: #0F172A;
    white-space: nowrap;
}

.gl-trust-bar__text span {
    font-size: 0.75rem;
    color: #64748B;
    white-space: nowrap;
}

/* ==========================================================================
   SECTION STYLES
   ========================================================================== */
.gl-section__header {
    text-align: center;
    margin-bottom: 56px;
}

.gl-section__tag {
    display: inline-block;
    color: #0F172A;
    background: var(--gl-brand);
    padding: 6px 14px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: var(--gl-radius-full);
    margin-bottom: 16px;
}

.gl-section__title {
    margin: 0 0 12px;
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 900;
    color: #0F172A;
}

.gl-section__subtitle {
    color: #64748B;
    font-size: 1.0625rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.gl-section__cta {
    text-align: center;
    margin-top: 56px;
}

/* ==========================================================================
   FEATURES SPLIT SECTION (Image + Features List)
   ========================================================================== */
.gl-features-split {
    background: #F8FAFC;
}

.gl-features-split__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

@media (max-width: 1024px) {
    .gl-features-split__grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

.gl-features-split__image {
    position: relative;
    border-radius: var(--gl-radius-2xl);
    overflow: hidden;
    aspect-ratio: 1/1;
}

.gl-features-split__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gl-features-split__content {
    padding: 20px 0;
}

.gl-section__title--left {
    text-align: left;
    margin-bottom: 32px;
}

/* 
 * Features List - Component styling with parent context
 * for cascade control over generic resets
 */
.gl-features-split .gl-features-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.gl-features-split .gl-features-list__item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    transition: all 0.2s ease;
}

.gl-features-split .gl-features-list__item:hover {
    border-color: var(--gl-brand);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.gl-features-split .gl-features-list__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    min-width: 52px;
    background: rgba(255, 215, 0, 0.15);
    border-radius: 14px;
    color: #C9A000;
    flex-shrink: 0;
}

.gl-features-split .gl-features-list__icon svg {
    width: 26px;
    height: 26px;
    flex-shrink: 0;
}

.gl-features-split .gl-features-list__text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
    padding-top: 4px;
}

.gl-features-list__text strong {
    font-size: 1rem;
    font-weight: 700;
    color: #0F172A;
    display: block;
}

.gl-features-list__text span {
    font-size: 0.9375rem;
    color: #64748B;
    line-height: 1.5;
    display: block;
}

/* ==========================================================================
   LIFESTYLE BANNER SECTION
   ========================================================================== */
.gl-banner {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.gl-banner__bg {
    position: absolute;
    inset: 0;
}

.gl-banner__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gl-banner__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(15, 23, 42, 0.9) 0%,
        rgba(15, 23, 42, 0.7) 50%,
        rgba(15, 23, 42, 0.5) 100%
    );
}

.gl-banner__content {
    position: relative;
    z-index: 1;
    max-width: 500px;
}

@media (max-width: 768px) {
    .gl-banner {
        padding: 80px 0;
    }
    
    .gl-banner__content {
        text-align: center;
        max-width: 100%;
    }
    
    .gl-banner__overlay {
        background: rgba(15, 23, 42, 0.8);
    }
}

.gl-banner__title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 900;
    color: #FFFFFF;
    margin: 0 0 16px;
}

.gl-banner__text {
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin: 0 0 28px;
}

/* ==========================================================================
   FEATURES SECTION (Grid - Legacy)
   ========================================================================== */
.gl-features {
    background: #F8FAFC;
}

.gl-features__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

@media (max-width: 1024px) {
    .gl-features__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .gl-features__grid {
        grid-template-columns: 1fr;
    }
}

.gl-feature {
    text-align: center;
    padding: 40px 28px;
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: var(--gl-radius-2xl);
    transition: all var(--gl-transition-slow);
}

.gl-feature:hover {
    border-color: var(--gl-brand);
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.gl-feature__icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 72px;
    height: 72px;
    margin: 0 auto 24px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: var(--gl-radius-xl);
    color: var(--gl-brand);
}

.gl-feature__title {
    font-size: 1.125rem;
    font-weight: 700;
    margin: 0 0 12px;
    color: #0F172A;
}

.gl-feature__text {
    color: #64748B;
    font-size: 0.9375rem;
    line-height: 1.6;
    margin: 0;
}

/* ==========================================================================
   PRODUCT COLLECTIONS (Cudaz, Finz, Rayz)
   ========================================================================== */
.gl-collections {
    background: #F8FAFC;
}

.gl-collections__grid {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.gl-collection-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    background: #FFFFFF;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.gl-collection-card:nth-child(even) {
    direction: rtl;
}

.gl-collection-card:nth-child(even) > * {
    direction: ltr;
}

@media (max-width: 900px) {
    .gl-collection-card,
    .gl-collection-card:nth-child(even) {
        grid-template-columns: 1fr;
        direction: ltr;
    }
}

.gl-collection-card__image {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.gl-collection-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gl-collection-card:hover .gl-collection-card__image img {
    transform: scale(1.05);
}

.gl-collection-card__content {
    padding: 48px;
}

@media (max-width: 900px) {
    .gl-collection-card__content {
        padding: 32px;
    }
}

.gl-collection-card__badge {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(255, 215, 0, 0.15);
    color: #B8960A;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: 100px;
    margin-bottom: 16px;
}

.gl-collection-card__title {
    font-size: 2rem;
    font-weight: 900;
    color: #0F172A;
    margin: 0 0 8px;
}

.gl-collection-card__subtitle {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gl-ocean);
    margin: 0 0 16px;
}

.gl-collection-card__desc {
    color: #64748B;
    font-size: 0.9375rem;
    line-height: 1.7;
    margin: 0 0 20px;
}

.gl-collection-card__features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
}

.gl-collection-card__features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    color: #0F172A;
}

.gl-collection-card__features li::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--gl-brand);
    border-radius: 50%;
    flex-shrink: 0;
}

.gl-collection-card__ideal {
    font-size: 0.8125rem;
    color: #94A3B8;
    font-style: italic;
    margin: 0 0 24px;
    padding-top: 16px;
    border-top: 1px solid #E2E8F0;
}

/* ==========================================================================
   CATEGORIES
   ========================================================================== */
.gl-categories__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

/* When only 2 items, make them larger and centered */
.gl-categories__grid:has(:nth-child(2):last-child) {
        grid-template-columns: repeat(2, 1fr);
    max-width: 800px;
}

@media (max-width: 640px) {
    .gl-categories__grid,
    .gl-categories__grid:has(:nth-child(2):last-child) {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
}

.gl-category-card {
    position: relative;
    display: block;
    aspect-ratio: 1/1;
    border-radius: var(--gl-radius-2xl);
    overflow: hidden;
    text-decoration: none;
    background: #F1F5F9;
}

.gl-category-card__image {
    position: absolute;
    inset: 0;
}

.gl-category-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--gl-transition-slow);
}

.gl-category-card__placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #E2E8F0 0%, #CBD5E1 100%);
}

.gl-category-card:hover .gl-category-card__image img {
    transform: scale(1.08);
}

.gl-category-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.85) 0%, rgba(15, 23, 42, 0.2) 50%, transparent 100%);
    transition: background var(--gl-transition-base);
}

.gl-category-card:hover .gl-category-card__overlay {
    background: linear-gradient(to top, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.3) 60%, transparent 100%);
}

.gl-category-card__content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px;
    z-index: 1;
}

.gl-category-card__title {
    font-size: 1.375rem;
    font-weight: 800;
    color: #FFFFFF;
    margin: 0 0 6px;
}

.gl-category-card__count {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 12px;
}

.gl-category-card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--gl-brand);
    font-size: 0.875rem;
    font-weight: 600;
    opacity: 0;
    transform: translateY(10px);
    transition: all var(--gl-transition-base);
}

.gl-category-card:hover .gl-category-card__link {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.gl-testimonials {
    background: #F8FAFC;
}

.gl-testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

@media (max-width: 1024px) {
    .gl-testimonials__grid {
        grid-template-columns: 1fr;
    }
}

.gl-testimonial {
    padding: 36px;
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: var(--gl-radius-2xl);
    transition: all var(--gl-transition-base);
}

.gl-testimonial:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    transform: translateY(-4px);
}

.gl-testimonial__rating {
    margin-bottom: 20px;
}

/* SVG Star Rating Component */
.gl-stars {
    display: inline-flex;
    gap: 3px;
}

.gl-stars svg {
    color: var(--gl-brand);
}

.gl-testimonial__quote {
    color: #475569;
    font-size: 1rem;
    line-height: 1.75;
    margin: 0 0 24px;
    font-style: italic;
}

.gl-testimonial__author {
    display: flex;
    flex-direction: column;
    gap: 2px;
    font-style: normal;
}

.gl-testimonial__author strong {
    color: #0F172A;
    font-weight: 700;
    font-size: 0.9375rem;
}

.gl-testimonial__author span {
    color: #94A3B8;
    font-size: 0.8125rem;
}

/* Trust Badges */
.gl-testimonials__badges {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 56px;
    padding-top: 40px;
    border-top: 1px solid #E2E8F0;
}

@media (max-width: 640px) {
    .gl-testimonials__badges {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }
}

.gl-trust-badge {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 24px;
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: var(--gl-radius-xl);
}

.gl-trust-badge__score {
    font-size: 2rem;
    font-weight: 900;
    color: #0F172A;
    line-height: 1;
}

.gl-trust-badge__info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.gl-trust-badge__info span {
    font-size: 0.8125rem;
    color: #64748B;
    font-weight: 500;
}

/* ==========================================================================
   CTA SECTION
   ========================================================================== */
.gl-cta {
    background: #0F172A;
    padding: 80px 0;
}

.gl-cta__inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    align-items: center;
}

@media (max-width: 1024px) {
    .gl-cta__inner {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
}

.gl-cta__content {
    position: relative;
}

.gl-cta__title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 900;
    color: #FFFFFF;
    margin: 0 0 16px;
}

.gl-cta__text {
    color: #94A3B8;
    font-size: 1.0625rem;
    line-height: 1.7;
    margin: 0 0 28px;
    max-width: 540px;
}

@media (max-width: 1024px) {
    .gl-cta__text {
        max-width: 100%;
    }
}

.gl-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

@media (max-width: 1024px) {
    .gl-cta__actions {
        justify-content: center;
    }
}

/* CTA Features - Parent context for specificity */
.gl-cta .gl-cta__features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

@media (max-width: 1024px) {
    .gl-cta .gl-cta__features {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
}

.gl-cta .gl-cta__feature {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #E2E8F0;
    font-size: 0.9375rem;
    font-weight: 500;
    white-space: nowrap;
}

.gl-cta__feature svg {
    color: var(--gl-brand);
    flex-shrink: 0;
    width: 22px;
    height: 22px;
}
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* ==========================================================================
   SEO CATEGORY CONTENT
   ========================================================================== */
.gl-category-seo {
    margin-bottom: 40px;
    padding: 32px;
    background: var(--gl-white);
    border: 1px solid var(--gl-border);
    border-radius: var(--gl-radius-2xl);
}

.gl-category-seo__intro {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--gl-gray-600);
    margin: 0 0 24px;
}

.gl-category-seo__features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 12px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.gl-category-seo__features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: var(--gl-gray-100);
    border-radius: var(--gl-radius-lg);
    color: var(--gl-gray-700);
    font-size: 0.9375rem;
    font-weight: 500;
}

.gl-category-seo__features li svg {
    flex-shrink: 0;
    color: var(--gl-ocean);
}

/* SEO Footer Content */
.gl-category-seo-footer {
    margin-top: 64px;
    padding-top: 48px;
    border-top: 1px solid var(--gl-border);
}

.gl-category-seo-footer__content {
    max-width: 800px;
    margin: 0 auto;
}

.gl-category-seo-footer__content h2,
.gl-category-seo-footer__content h3 {
    font-size: 1.5rem;
    margin: 32px 0 16px;
}

.gl-category-seo-footer__content h2:first-child,
.gl-category-seo-footer__content h3:first-child {
    margin-top: 0;
}

.gl-category-seo-footer__content p {
    color: var(--gl-gray-700);
    line-height: 1.8;
}

.gl-category-seo-footer__content ul,
.gl-category-seo-footer__content ol {
    color: var(--gl-gray-700);
    padding-left: 24px;
    margin-bottom: 16px;
}

.gl-category-seo-footer__content li {
    margin-bottom: 8px;
}

.gl-category-seo-footer__content a {
    color: var(--gl-ocean);
    text-decoration: underline;
}

.gl-category-seo-footer__content a:hover {
    color: var(--gl-ocean-dark);
}

/* ==========================================================================
   SHOP HEADER
   ========================================================================== */
.gl-shop-header {
    padding: 48px 0;
    text-align: center;
}

.gl-shop-header__title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin: 0 0 16px;
}

.gl-shop-header .term-description {
    max-width: 700px;
    margin: 0 auto;
    color: var(--gl-gray-400);
    font-size: 1.0625rem;
    line-height: 1.7;
}

/* ==========================================================================
   SHOP TOOLBAR
   ========================================================================== */
.gl-shop-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    padding: 16px 0;
    margin-bottom: 32px;
    border-top: 1px solid var(--gl-border);
    border-bottom: 1px solid var(--gl-border);
}

.gl-shop-toolbar .woocommerce-result-count {
    color: var(--gl-gray-400);
    font-size: 0.875rem;
    margin: 0;
}

.gl-shop-toolbar .woocommerce-ordering {
    margin: 0;
}

.gl-shop-toolbar .woocommerce-ordering select {
    padding: 10px 40px 10px 16px;
    background: var(--gl-white);
    border: 1px solid var(--gl-border);
    border-radius: var(--gl-radius-lg);
    color: var(--gl-gray-900);
    font-size: 0.875rem;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%239CA3AF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
}

.gl-shop-toolbar .woocommerce-ordering select:focus {
    outline: none;
    border-color: var(--gl-ocean);
}

/* ==========================================================================
   BREADCRUMBS
   ========================================================================== */
.gl-breadcrumbs {
    padding: 16px 0;
    font-size: 0.875rem;
}

.gl-breadcrumbs__list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.gl-breadcrumbs__item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.gl-breadcrumbs__item a {
    color: var(--gl-gray-400);
    text-decoration: none;
    transition: color var(--gl-transition-fast);
}

.gl-breadcrumbs__item a:hover {
    color: var(--gl-brand);
}

.gl-breadcrumbs__item:last-child {
    color: var(--gl-gray-900);
}

.gl-breadcrumb__sep {
    color: var(--gl-gray-600);
}

/* ==========================================================================
   WHATSAPP FLOATING BUTTON
   ========================================================================== */
.gl-whatsapp-fixed {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    background: #25D366;
    color: var(--gl-white);
    border-radius: 50%;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
    transition: all var(--gl-transition-base);
}

.gl-whatsapp-fixed:hover {
    background: #20BA5C;
    transform: scale(1.08);
    color: var(--gl-white);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
}

.gl-whatsapp-fixed svg {
    color: var(--gl-white);
}

@media (max-width: 768px) {
    .gl-whatsapp-fixed {
        width: 48px;
        height: 48px;
        bottom: 20px;
        right: 20px;
    }
}

/* ==========================================================================
   LANGUAGE SWITCHER
   ========================================================================== */
.gl-lang-switcher {
    position: relative;
}

.gl-lang-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 12px;
    height: 44px;
    background: transparent;
    border: 1px solid var(--gl-border);
    color: var(--gl-gray-700);
    cursor: pointer;
    border-radius: var(--gl-radius-lg);
    font-size: 0.8125rem;
    font-weight: 600;
    transition: all var(--gl-transition-base);
}

.gl-lang-toggle:hover {
    border-color: var(--gl-ocean);
    color: var(--gl-ocean);
}

.gl-lang-current {
    font-weight: 700;
}

.gl-lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 180px;
    background: var(--gl-white);
    border: 1px solid var(--gl-border);
    border-radius: var(--gl-radius-xl);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--gl-transition-base);
    box-shadow: var(--gl-shadow-xl);
    z-index: 1000;
}

.gl-lang-switcher:hover .gl-lang-dropdown,
.gl-lang-switcher.is-open .gl-lang-dropdown,
.gl-lang-toggle[aria-expanded="true"] + .gl-lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.gl-lang-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    color: var(--gl-gray-700);
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: var(--gl-radius-md);
    transition: all var(--gl-transition-fast);
}

.gl-lang-option:hover {
    background: rgba(14, 165, 233, 0.1);
    color: var(--gl-ocean);
}

.gl-lang-option.is-active {
    background: rgba(240, 228, 9, 0.15);
    color: var(--gl-ocean);
    font-weight: 600;
}

.gl-lang-flag {
    font-size: 1.125rem;
    line-height: 1;
}

.gl-lang-name {
    flex: 1;
}

/* ==========================================================================
   PRODUCT PAGE - Single Product Styling
   ========================================================================== */

/* Product Page Layout */
.gl-product-single {
    padding: 0;
    background: var(--gl-white);
}

.gl-product-single .gl-container {
    max-width: var(--gl-max-width);
}

/* Note: Product layout is handled by gl-product-hero__grid in product-page.css */
/* Do NOT apply grid to .woocommerce div.product - it breaks the custom template */

/* ==========================================================================
   PRODUCT GALLERY - Override all plugin galleries
   ========================================================================== */

/* 
 * Hide default WooCommerce galleries - we use custom gl-product-gallery
 * !important is INTENTIONALLY kept here because:
 * - WooCommerce/plugins may inject inline styles
 * - This is a deliberate override of third-party plugin behavior
 * - Without it, duplicate galleries would appear
 */
.woocommerce div.product div.images,
.woocommerce-product-gallery,
.woocommerce-product-gallery__wrapper,
.flex-viewport,
.flex-control-thumbs,
.flex-control-nav {
    display: none !important;
}

/* Note: Gallery styles are now in product-page.css using .gl-product-gallery class */
/* The old .gl-gallery class is deprecated */

/* ==========================================================================
   PRODUCT SUMMARY (legacy - styles now in product-page.css)
   ========================================================================== */

/* Breadcrumb */
.woocommerce .woocommerce-breadcrumb {
    font-size: 0.875rem;
    color: #64748B;
    margin-bottom: 20px;
}

.woocommerce .woocommerce-breadcrumb a {
    color: #64748B;
    text-decoration: none;
    transition: color 0.2s ease;
}

.woocommerce .woocommerce-breadcrumb a:hover {
    color: var(--gl-brand);
}

/* Note: All product page styles are now in product-page.css */
/* The custom gl-product-* classes handle the product page layout */

/* ==========================================================================
   RELATED PRODUCTS
   ========================================================================== */
.woocommerce div.product .related.products,
.woocommerce div.product .upsells.products {
    grid-column: 1 / -1;
    margin-top: 80px;
    padding-top: 60px;
    border-top: 1px solid #E2E8F0;
}

.woocommerce div.product .related.products > h2,
.woocommerce div.product .upsells.products > h2 {
    font-size: 1.75rem;
    font-weight: 800;
    color: #0F172A;
    text-align: center;
    margin: 0 0 40px;
}

/* 
 * LIGHTBOX - Consolidated in custom-features.css
 * See custom-features.css for .gl-lightbox styles
 */

/* ==========================================================================
   STANDARD PAGE TEMPLATE
   ========================================================================== */
.gl-page {
    padding: 60px 0 100px;
    background: #FFFFFF;
}

.gl-page-content {
    max-width: 800px;
    margin: 0 auto;
}

.gl-page-header {
    text-align: center;
    margin-bottom: 48px;
    padding-bottom: 32px;
    border-bottom: 1px solid #E2E8F0;
}

.gl-page-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: #0F172A;
    margin: 0;
    line-height: 1.2;
}

.gl-page-body {
    color: #475569;
    font-size: 1.0625rem;
    line-height: 1.8;
}

.gl-page-body h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #0F172A;
    margin: 48px 0 20px;
}

.gl-page-body h3 {
    font-size: 1.375rem;
    font-weight: 700;
    color: #0F172A;
    margin: 36px 0 16px;
}

.gl-page-body p {
    margin: 0 0 20px;
}

.gl-page-body ul,
.gl-page-body ol {
    margin: 0 0 24px;
    padding-left: 24px;
}

.gl-page-body li {
    margin-bottom: 8px;
}

.gl-page-body a {
    color: var(--gl-ocean);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.gl-page-body a:hover {
    color: #0284C7;
}

.gl-page-body img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 24px 0;
}

.gl-page-body blockquote {
    margin: 32px 0;
    padding: 24px 32px;
    background: #F8FAFC;
    border-left: 4px solid var(--gl-brand);
    border-radius: 0 12px 12px 0;
    font-style: italic;
    color: #64748B;
}

/* ==========================================================================
   PAGE HERO (for special pages)
   ========================================================================== */
.gl-page-hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    text-align: center;
}

.gl-page-hero__tag {
    display: inline-block;
    padding: 8px 16px;
    background: var(--gl-brand);
    color: #0F172A;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 100px;
    margin-bottom: 20px;
}

.gl-page-hero__title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    color: #FFFFFF;
    margin: 0 0 16px;
    line-height: 1.1;
}

.gl-page-hero__subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ==========================================================================
   SHOP PAGE (Archive) - Sidebar Layout
   ========================================================================== */
.gl-shop {
    padding: 0 0 80px;
    background: #FAFBFC;
}

/* Shop Header with Description */
.gl-shop-header {
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    padding: 48px 0;
    margin-bottom: 40px;
    text-align: center;
}

.gl-shop-header__title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    color: #FFFFFF;
    margin: 0 0 16px;
}

.gl-shop-header__description {
    max-width: 800px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.8;
}

.gl-shop-header__description p {
    margin: 0 0 12px;
}

.gl-shop-header__description p:last-child {
    margin-bottom: 0;
}

.gl-shop-header__description ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 24px;
}

.gl-shop-header__description ul li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9375rem;
}

.gl-shop-header__description ul li::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--gl-brand);
    border-radius: 50%;
    flex-shrink: 0;
}

.gl-shop-header__description strong {
    color: var(--gl-brand);
}

/* Shop Layout - Sidebar + Products */
.gl-shop-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    align-items: start;
}

@media (max-width: 1024px) {
    .gl-shop-layout {
        grid-template-columns: 240px 1fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .gl-shop-layout {
        grid-template-columns: 1fr;
    }
}

/* Sidebar Filters */
.gl-shop-sidebar {
    position: sticky;
    top: 120px;
    background: #FFFFFF;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

@media (max-width: 768px) {
    .gl-shop-sidebar {
        position: relative;
        top: 0;
    }
}

.gl-filter-widget {
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid #E2E8F0;
}

.gl-filter-widget:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.gl-filter-widget__title {
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #0F172A;
    margin: 0 0 16px;
}

/* WooCommerce Filter Widgets Styling */
.gl-shop-sidebar .widget {
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid #E2E8F0;
}

.gl-shop-sidebar .widget:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.gl-shop-sidebar .widget-title,
.gl-shop-sidebar .widgettitle {
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #0F172A;
    margin: 0 0 16px;
}

.gl-shop-sidebar .product-categories {
    list-style: none;
    padding: 0;
    margin: 0;
}

.gl-shop-sidebar .product-categories li {
    margin-bottom: 8px;
}

.gl-shop-sidebar .product-categories li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 12px;
    color: #475569;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s ease;
    font-size: 0.9375rem;
}

.gl-shop-sidebar .product-categories li a:hover {
    background: #F8FAFC;
    color: #0F172A;
}

.gl-shop-sidebar .product-categories li.current-cat > a {
    background: rgba(255, 215, 0, 0.15);
    color: #0F172A;
    font-weight: 600;
}

.gl-shop-sidebar .product-categories .count {
    background: #F1F5F9;
    color: #64748B;
    font-size: 0.75rem;
    padding: 2px 8px;
    border-radius: 100px;
}

/* Price Filter Widget */
.gl-shop-sidebar .price_slider_wrapper {
    padding-top: 8px;
}

.gl-shop-sidebar .price_slider {
    margin-bottom: 16px;
}

.gl-shop-sidebar .price_slider_amount {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.gl-shop-sidebar .price_slider_amount .price_label {
    flex: 1;
    font-size: 0.875rem;
    color: #64748B;
}

.gl-shop-sidebar .price_slider_amount .button {
    padding: 10px 20px;
    background: var(--gl-brand);
    color: #0F172A;
    font-size: 0.8125rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}

/* Products Area */
.gl-shop-products {
    min-width: 0;
}

.gl-shop-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 24px;
    padding: 14px 20px;
    background: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.woocommerce .woocommerce-result-count {
    margin: 0;
    color: #64748B;
    font-size: 0.875rem;
}

.woocommerce .woocommerce-ordering select {
    padding: 10px 40px 10px 16px;
    border: 2px solid #E2E8F0;
    border-radius: 8px;
    font-size: 0.875rem;
    color: #0F172A;
    background: #FFFFFF;
    cursor: pointer;
}

.woocommerce .woocommerce-ordering select:focus {
    outline: none;
    border-color: var(--gl-brand);
}

/* 
 * Product Grid - 3 columns in sidebar layout
 * Using high specificity to override WooCommerce defaults
 */
.gl-shop-products .woocommerce ul.products,
.gl-shop-products ul.products,
.gl-shop .gl-shop-products ul.products {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    list-style: none;
    padding: 0;
    margin: 0;
}

@media (max-width: 1200px) {
    .gl-shop-products ul.products,
    .gl-shop .gl-shop-products ul.products {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 540px) {
    .gl-shop-products ul.products,
    .gl-shop .gl-shop-products ul.products {
        grid-template-columns: 1fr;
    }
}

/* Product Grid - Full width (no sidebar) */
.woocommerce ul.products,
body.woocommerce-page ul.products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    list-style: none;
    padding: 0;
    margin: 0;
}

@media (max-width: 1200px) {
    .woocommerce ul.products {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .woocommerce ul.products {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 540px) {
    .woocommerce ul.products {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
}

/* Product Card */
.woocommerce ul.products li.product {
    background: #FFFFFF;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.woocommerce ul.products li.product:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.woocommerce ul.products li.product a img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: contain;
    padding: 16px;
    background: #FAFBFC;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-size: 1rem;
    font-weight: 600;
    color: #0F172A;
    padding: 16px 16px 8px;
    margin: 0;
}

.woocommerce ul.products li.product .price {
    padding: 0 16px 16px;
    font-size: 1.125rem;
    font-weight: 700;
    color: #0F172A;
}

.woocommerce ul.products li.product .price del {
    color: #94A3B8;
    font-size: 0.875rem;
    font-weight: 500;
}

.woocommerce ul.products li.product .price ins {
    color: #16A34A;
    text-decoration: none;
}

.woocommerce ul.products li.product .button {
    display: block;
    width: calc(100% - 32px);
    margin: 0 16px 16px;
    padding: 12px 20px;
    background: var(--gl-brand);
    color: #0F172A;
    font-weight: 600;
    font-size: 0.875rem;
    text-align: center;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.2s ease;
}

.woocommerce ul.products li.product .button:hover {
    background: #E8C200;
}

/* Sale Badge on Cards */
.woocommerce ul.products li.product .onsale {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 10px;
    background: #EF4444;
    color: #FFFFFF;
    font-size: 0.6875rem;
    font-weight: 700;
    border-radius: 6px;
    z-index: 5;
}

/* Pagination */
.woocommerce nav.woocommerce-pagination {
    margin-top: 48px;
    text-align: center;
}

.woocommerce nav.woocommerce-pagination ul {
    display: inline-flex;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: #FFFFFF;
    border: 2px solid #E2E8F0;
    border-radius: 10px;
    color: #64748B;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.woocommerce nav.woocommerce-pagination ul li a:hover {
    border-color: var(--gl-brand);
    color: #0F172A;
}

.woocommerce nav.woocommerce-pagination ul li span.current {
    background: var(--gl-brand);
    border-color: var(--gl-brand);
    color: #0F172A;
}

/* ==========================================================================
   B2B PAGE
   ========================================================================== */
.gl-b2b-intro {
    text-align: center;
}

.gl-b2b-intro__text {
    font-size: 1.25rem;
    color: #475569;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.gl-b2b-benefits__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

@media (max-width: 900px) {
    .gl-b2b-benefits__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .gl-b2b-benefits__grid {
        grid-template-columns: 1fr;
    }
}

.gl-b2b-benefit {
    padding: 32px;
    background: #FFFFFF;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.gl-b2b-benefit__icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 215, 0, 0.15);
    border-radius: 14px;
    color: #C9A000;
    margin: 0 auto 20px;
}

.gl-b2b-benefit__title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #0F172A;
    margin: 0 0 12px;
}

.gl-b2b-benefit__text {
    color: #64748B;
    font-size: 0.9375rem;
    line-height: 1.6;
    margin: 0;
}

.gl-b2b-partners__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

@media (max-width: 900px) {
    .gl-b2b-partners__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.gl-b2b-partner {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: #F8FAFC;
    border-radius: 10px;
    color: #0F172A;
    font-weight: 500;
}

.gl-b2b-partner svg {
    color: #16A34A;
    flex-shrink: 0;
}

.gl-b2b-cta {
    text-align: center;
}

.gl-b2b-cta__content {
    max-width: 600px;
    margin: 0 auto;
}

.gl-b2b-cta__title {
    font-size: 2rem;
    font-weight: 800;
    color: #0F172A;
    margin: 0 0 16px;
}

.gl-b2b-cta__text {
    color: #64748B;
    font-size: 1.0625rem;
    line-height: 1.7;
    margin: 0 0 32px;
}

.gl-b2b-cta__actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.gl-b2b-cta__email {
    color: #64748B;
    font-size: 0.9375rem;
}

.gl-b2b-cta__email a {
    color: var(--gl-ocean);
    text-decoration: none;
    font-weight: 600;
}

.gl-b2b-cta__email a:hover {
    text-decoration: underline;
}

/* ==========================================================================
   CONTACT PAGE
   ========================================================================== */
.gl-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

@media (max-width: 900px) {
    .gl-contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

.gl-contact-info {
    padding: 40px;
    background: #F8FAFC;
    border-radius: 20px;
}

.gl-contact-info__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0F172A;
    margin: 0 0 24px;
}

.gl-contact-info__item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.gl-contact-info__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 215, 0, 0.15);
    border-radius: 12px;
    color: #C9A000;
    flex-shrink: 0;
}

.gl-contact-info__text strong {
    display: block;
    font-weight: 600;
    color: #0F172A;
    margin-bottom: 4px;
}

.gl-contact-info__text span,
.gl-contact-info__text a {
    color: #64748B;
    font-size: 0.9375rem;
    text-decoration: none;
}

.gl-contact-info__text a:hover {
    color: var(--gl-ocean);
}

/* Contact Form */
.gl-contact-form {
    padding: 40px;
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 20px;
}

.gl-contact-form__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0F172A;
    margin: 0 0 24px;
}

.gl-form-group {
    margin-bottom: 20px;
}

.gl-form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #0F172A;
    margin-bottom: 8px;
}

.gl-form-input,
.gl-form-textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #E2E8F0;
    border-radius: 10px;
    font-size: 1rem;
    color: #0F172A;
    transition: all 0.2s ease;
}

.gl-form-input:focus,
.gl-form-textarea:focus {
    outline: none;
    border-color: var(--gl-brand);
}

.gl-form-textarea {
    min-height: 150px;
    resize: vertical;
}

.gl-form-submit {
    width: 100%;
    padding: 16px 32px;
    background: var(--gl-brand);
    color: #0F172A;
    font-size: 1rem;
    font-weight: 700;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.gl-form-submit:hover {
    background: #E8C200;
    transform: translateY(-2px);
}

/* ==========================================================================
   FAQ PAGE
   ========================================================================== */
.gl-faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.gl-faq-item {
    margin-bottom: 16px;
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    overflow: hidden;
}

.gl-faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 20px 24px;
    background: transparent;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    color: #0F172A;
    text-align: left;
    cursor: pointer;
    transition: all 0.2s ease;
}

.gl-faq-question:hover {
    background: #F8FAFC;
}

.gl-faq-question svg {
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.gl-faq-item.is-open .gl-faq-question svg {
    transform: rotate(180deg);
}

.gl-faq-answer {
    display: none;
    padding: 0 24px 20px;
    color: #64748B;
    line-height: 1.7;
}

.gl-faq-item.is-open .gl-faq-answer {
    display: block;
}

/* ==========================================================================
   LOOKBOOK PAGE
   ========================================================================== */
.gl-lookbook-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

@media (max-width: 900px) {
    .gl-lookbook-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .gl-lookbook-grid {
        grid-template-columns: 1fr;
    }
}

.gl-lookbook-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 1/1;
}

.gl-lookbook-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gl-lookbook-item:hover img {
    transform: scale(1.05);
}

.gl-lookbook-item__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gl-lookbook-item:hover .gl-lookbook-item__overlay {
    opacity: 1;
}

.gl-lookbook-item__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    color: #FFFFFF;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s ease;
}

.gl-lookbook-item:hover .gl-lookbook-item__content {
    transform: translateY(0);
    opacity: 1;
}

.gl-lookbook-item__title {
    font-size: 1.125rem;
    font-weight: 700;
    margin: 0 0 8px;
}

.gl-lookbook-item__link {
    color: var(--gl-brand);
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
}

/* ==========================================================================
   TESTIMONIALS PAGE
   ========================================================================== */
.gl-testimonials-page__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

@media (max-width: 768px) {
    .gl-testimonials-page__grid {
        grid-template-columns: 1fr;
    }
}

.gl-testimonial-card {
    padding: 32px;
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    transition: all 0.2s ease;
}

.gl-testimonial-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.gl-testimonial-card__stars {
    color: var(--gl-brand);
    margin-bottom: 16px;
}

.gl-testimonial-card__quote {
    font-size: 1rem;
    color: #475569;
    line-height: 1.7;
    font-style: italic;
    margin: 0 0 20px;
}

.gl-testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.gl-testimonial-card__avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #F1F5F9;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #64748B;
}

.gl-testimonial-card__name {
    font-weight: 600;
    color: #0F172A;
}

.gl-testimonial-card__sport {
    font-size: 0.8125rem;
    color: #64748B;
}

/* ==========================================================================
   UTILITY CLASSES
   ========================================================================== */
.gl-bg-surface {
    background: #F8FAFC;
}

.gl-text-center {
    text-align: center;
}

.gl-mt-0 { margin-top: 0; }
.gl-mb-0 { margin-bottom: 0; }
.gl-py-lg { padding-top: 80px; padding-bottom: 80px; }


