:root {
    --gh-primary: #0D9488;
    --gh-primary-light: #2DD4BF;
    --gh-primary-dark: #0F766E;
    --gh-primary-contrast: #FFFFFF;
    --gh-secondary: #0284C7;
    --gh-secondary-light: #38BDF8;
    --gh-secondary-dark: #0369A1;
    --gh-accent: #059669;
    --gh-accent-light: #34D399;
    --gh-accent-dark: #047857;
    --gh-bg-base: #F0FDF4;
    --gh-bg-gradient: linear-gradient(135deg, #F0FDF4 0%, #ECFEFF 45%, #F0FDFA 100%);
    --gh-surface-glass: rgba(255, 255, 255, 0.72);
    --gh-surface-glass-subtle: rgba(255, 255, 255, 0.45);
    --gh-surface-glass-solid: rgba(255, 255, 255, 0.92);
    --gh-badge-bg: rgba(45, 212, 191, 0.15);
    --gh-text-primary: #0F2F2E;
    --gh-text-secondary: #3B615D;
    --gh-text-muted: #5F8783;
    --gh-border-glass: 1px solid rgba(255, 255, 255, 0.85);
    --gh-border-accent: 1px solid rgba(20, 184, 166, 0.28);
    --gh-border-subtle: 1px solid rgba(13, 148, 136, 0.12);
    --gh-shadow-card: 0 12px 36px -8px rgba(13, 148, 136, 0.08), 0 4px 16px -4px rgba(2, 132, 199, 0.05);
    --gh-shadow-hover: 0 22px 48px -10px rgba(13, 148, 136, 0.18), 0 8px 24px -6px rgba(2, 132, 199, 0.1);
    --gh-shadow-btn: 0 8px 20px -4px rgba(13, 148, 136, 0.22);
    --gh-font-headings: 'Outfit', 'Plus Jakarta Sans', sans-serif;
    --gh-font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

.gh-body {
    margin: 0;
    padding: 0;
    font-family: var(--gh-font-body);
    font-size: 1rem;
    line-height: 1.55;
    color: var(--gh-text-primary);
    background: var(--gh-bg-base);
    background-image: var(--gh-bg-gradient);
    background-attachment: fixed;
    background-repeat: no-repeat;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    font-family: var(--gh-font-headings);
    color: var(--gh-text-primary);
    font-weight: 700;
}

a {
    color: var(--gh-primary);
    text-decoration: none;
    transition: color 0.25s ease-in-out, transform 0.25s ease-in-out;
}

a:hover {
    color: var(--gh-primary-dark);
}

.text-muted {
    color: var(--gh-text-muted) !important;
}

.gh-glass-card {
    background: var(--gh-surface-glass);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: var(--gh-border-glass);
    border-radius: 1.25rem;
    box-shadow: var(--gh-shadow-card);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.gh-glass-card:hover {
    box-shadow: var(--gh-shadow-hover);
    transform: translateY(-4px);
}

.gh-badge {
    background: var(--gh-badge-bg);
    color: var(--gh-primary-dark);
    border: var(--gh-border-accent);
    font-weight: 600;
    padding: 0.35rem 0.85rem;
    border-radius: 9999px;
    font-size: 0.8125rem;
    letter-spacing: 0.02em;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.gh-btn-primary {
    background: linear-gradient(135deg, var(--gh-primary) 0%, var(--gh-secondary) 100%);
    color: #FFFFFF !important;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 9999px;
    padding: 0.8rem 1.85rem;
    font-weight: 600;
    box-shadow: var(--gh-shadow-btn);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.25s ease-in-out;
}

.gh-btn-primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 12px 26px -4px rgba(13, 148, 136, 0.45);
    color: #FFFFFF !important;
}

.gh-btn-secondary {
    background: rgba(255, 255, 255, 0.7);
    color: var(--gh-primary-dark) !important;
    border: var(--gh-border-accent);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 9999px;
    padding: 0.8rem 1.85rem;
    font-weight: 600;
    box-shadow: 0 4px 14px rgba(13, 148, 136, 0.08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.25s ease-in-out;
}

.gh-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.95);
    color: var(--gh-primary) !important;
    transform: translateY(-2px);
}

/* ===== header ===== */
.site-header {
    background-color: #F0FDF4;
    border-bottom: 1px solid rgba(13, 148, 136, 0.18);
    box-shadow: 0 4px 20px rgba(13, 148, 136, 0.06);
    z-index: 1030;
    padding: 0.5rem 0;
}

.site-header .brand-logo-img {
    width: 44px;
    height: 44px;
    max-width: 44px;
    max-height: 44px;
    object-fit: contain;
}

.site-header .brand-title {
    color: #0F2F2E;
    font-family: 'Outfit', 'Plus Jakarta Sans', sans-serif;
    letter-spacing: -0.02em;
}

.site-header .custom-nav-link {
    color: #3B615D;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.5rem 0.85rem;
    border-radius: 9999px;
    transition: all 0.25s ease-in-out;
}

.site-header .custom-nav-link:hover,
.site-header .custom-nav-link:focus {
    color: #0D9488;
    background-color: rgba(45, 212, 191, 0.12);
}

.site-header .custom-nav-link.active {
    color: #0F766E;
    background-color: rgba(45, 212, 191, 0.2);
}

.site-header .btn-shop-explore {
    background: linear-gradient(135deg, #0D9488 0%, #0284C7 100%);
    color: #FFFFFF;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.55rem 1.25rem;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 14px rgba(13, 148, 136, 0.25);
    transition: all 0.25s ease-in-out;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.site-header .btn-shop-explore:hover,
.site-header .btn-shop-explore:focus {
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(13, 148, 136, 0.35);
}

.site-header .cart-icon-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: #FFFFFF;
    color: #0F2F2E;
    border: 1px solid rgba(13, 148, 136, 0.2);
    box-shadow: 0 4px 12px rgba(13, 148, 136, 0.08);
    transition: all 0.25s ease-in-out;
    text-decoration: none;
}

.site-header .cart-icon-btn:hover,
.site-header .cart-icon-btn:focus {
    background-color: #0D9488;
    color: #FFFFFF;
    border-color: #0D9488;
    transform: scale(1.05);
}

.site-header .bg-teal {
    background-color: #0D9488 !important;
    color: #FFFFFF !important;
    position: absolute;
    top: -2px;
    right: -2px;
    font-size: 0.7rem;
    padding: 0.25em 0.5em;
    border: 2px solid #FFFFFF;
}

.site-header .custom-toggler {
    width: 44px;
    height: 44px;
    padding: 0;
    border-radius: 0.75rem;
    background-color: #FFFFFF;
    border: 1px solid rgba(13, 148, 136, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0F2F2E;
}

.site-header .custom-toggler:focus {
    box-shadow: 0 0 0 3px rgba(45, 212, 191, 0.35);
    outline: none;
}

.site-header .toggler-icon {
    font-size: 1.4rem;
    color: #0F2F2E;
}

@media (max-width: 991.98px) {
    .site-header .navbar-collapse {
        background-color: #FFFFFF;
        border-radius: 1rem;
        padding: 1.25rem 1rem;
        margin-top: 0.75rem;
        border: 1px solid rgba(13, 148, 136, 0.2);
        box-shadow: 0 12px 30px rgba(13, 148, 136, 0.12);
    }

    .site-header .custom-nav-link {
        padding: 0.65rem 1rem;
        font-size: 0.95rem;
    }
}

/* ===== welcome_to_get_hammocks ===== */
.hero-hammocks-section {
    background: linear-gradient(135deg, #F0FDF4 0%, #ECFEFF 45%, #F0FDFA 100%);
    color: #0F2F2E;
    position: relative;
    overflow: hidden
}

.hero-hammocks-section .hero-welcome-glass {
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-radius: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 12px 36px -8px rgba(13, 148, 136, 0.1)
}

.hero-hammocks-section .hero-badge-capsule {
    background: rgba(45, 212, 191, 0.18);
    border: 1px solid rgba(20, 184, 166, 0.3);
    padding: 0.45rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #0F766E
}

.hero-hammocks-section .hero-badge-capsule .text-teal {
    color: #0D9488;
    font-size: 1.1rem
}

.hero-hammocks-section .hero-main-title {
    font-family: 'Outfit', 'Plus Jakarta Sans', sans-serif;
    font-size: 2.75rem;
    font-weight: 700;
    line-height: 1.2;
    color: #0F2F2E;
    letter-spacing: -0.02em
}

.hero-hammocks-section .hero-lead-text {
    font-size: 1.05rem;
    line-height: 1.65;
    color: #3B615D
}

.hero-hammocks-section .hero-btn-primary {
    background: linear-gradient(135deg, #0D9488 0%, #0284C7 100%);
    color: #FFFFFF;
    border-radius: 9999px;
    padding: 0.85rem 1.85rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 20px -4px rgba(13, 148, 136, 0.32);
    transition: all 0.25s ease-in-out
}

.hero-hammocks-section .hero-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 26px -4px rgba(13, 148, 136, 0.45);
    color: #FFFFFF
}

.hero-hammocks-section .hero-btn-secondary {
    background: rgba(255, 255, 255, 0.85);
    color: #0F766E;
    border-radius: 9999px;
    padding: 0.85rem 1.85rem;
    font-weight: 600;
    border: 1px solid rgba(20, 184, 166, 0.35);
    backdrop-filter: blur(8px);
    transition: all 0.25s ease-in-out
}

.hero-hammocks-section .hero-btn-secondary:hover {
    background: #FFFFFF;
    color: #0D9488;
    transform: translateY(-2px);
    border-color: #0D9488
}

.hero-hammocks-section .hero-feature-pill-card {
    background: rgba(240, 253, 250, 0.8);
    border: 1px solid rgba(20, 184, 166, 0.2);
    border-radius: 1.25rem
}

.hero-hammocks-section .hero-icon-bubble {
    width: 46px;
    height: 46px;
    min-width: 46px;
    background: linear-gradient(135deg, #0D9488, #0284C7);
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    box-shadow: 0 4px 12px rgba(13, 148, 136, 0.2)
}

.hero-hammocks-section .hero-feature-heading {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0F2F2E;
    line-height: 1.25
}

.hero-hammocks-section .hero-feature-text {
    font-size: 0.875rem;
    color: #3B615D;
    line-height: 1.45
}

.hero-hammocks-section .hero-showcase-card {
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.95);
    border-radius: 1.25rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 12px 36px -8px rgba(13, 148, 136, 0.08);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1)
}

.hero-hammocks-section .hero-showcase-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 45px -12px rgba(13, 148, 136, 0.2)
}

.hero-hammocks-section .hero-showcase-img-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 4/5;
    overflow: hidden;
    background: #E6FFFA
}

.hero-hammocks-section .hero-showcase-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease
}

.hero-hammocks-section .hero-showcase-card:hover .hero-showcase-img {
    transform: scale(1.04)
}

.hero-hammocks-section .hero-card-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(15, 47, 46, 0.75);
    backdrop-filter: blur(6px);
    color: #FFFFFF;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.3rem 0.75rem;
    border-radius: 9999px;
    letter-spacing: 0.04em;
    text-transform: uppercase
}

.hero-hammocks-section .hero-showcase-body {
    display: flex;
    flex-direction: column;
    flex-grow: 1
}

.hero-hammocks-section .hero-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.3;
    color: #0F2F2E
}

.hero-hammocks-section .hero-card-link {
    color: #0F2F2E;
    text-decoration: none;
    transition: color 0.2s ease
}

.hero-hammocks-section .hero-card-link:hover {
    color: #0D9488
}

.hero-hammocks-section .hero-card-desc {
    font-size: 0.875rem;
    line-height: 1.45;
    color: #3B615D;
    flex-grow: 1
}

.hero-hammocks-section .hero-card-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0D9488
}

.hero-hammocks-section .hero-card-action-btn {
    background: rgba(240, 253, 250, 0.9);
    color: #0F766E;
    border: 1px solid rgba(20, 184, 166, 0.35);
    border-radius: 9999px;
    padding: 0.6rem 1.25rem;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.25s ease-in-out;
    text-decoration: none;
    display: inline-block
}

.hero-hammocks-section .hero-card-action-btn:hover {
    background: linear-gradient(135deg, #0D9488 0%, #0284C7 100%);
    color: #FFFFFF;
    border-color: transparent
}

@media (max-width:767.98px) {
    .hero-hammocks-section .hero-main-title {
        font-size: 1.125rem;
        line-height: 1.2;
        hyphens: auto
    }

    .hero-hammocks-section .hero-card-title {
        font-size: 1rem;
        line-height: 1.25;
        hyphens: auto
    }

    .hero-hammocks-section .hero-feature-heading {
        font-size: 0.875rem;
        line-height: 1.25;
        hyphens: auto
    }

    .hero-hammocks-section .hero-lead-text {
        font-size: 0.9rem;
        line-height: 1.5
    }

    .hero-hammocks-section .hero-welcome-glass {
        padding: 1.25rem
    }
}

/* ===== featured_hammocks ===== */
.catalog-featured-grid {
    background: linear-gradient(135deg, #F0FDF4 0%, #ECFEFF 45%, #F0FDFA 100%);
    position: relative;
    overflow: hidden;
}

.catalog-featured-grid__badge {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.9rem;
    font-family: 'Outfit', sans-serif;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #0F766E;
    background: rgba(45, 212, 191, 0.15);
    border: 1px solid rgba(20, 184, 166, 0.28);
    border-radius: 9999px;
}

.catalog-featured-grid__title {
    font-family: 'Outfit', sans-serif;
    font-size: 2.25rem;
    font-weight: 700;
    color: #0F2F2E;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.catalog-featured-grid__subtitle {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1rem;
    line-height: 1.55;
    color: #3B615D;
    max-width: 620px;
}

.catalog-featured-grid__card {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.85);
    border-radius: 1.25rem;
    box-shadow: 0 12px 36px -8px rgba(13, 148, 136, 0.08), 0 4px 16px -4px rgba(2, 132, 199, 0.05);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
}

.catalog-featured-grid__card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 48px -10px rgba(13, 148, 136, 0.18), 0 8px 24px -6px rgba(2, 132, 199, 0.1);
    border-color: rgba(45, 212, 191, 0.45);
}

.catalog-featured-grid__img-wrap {
    border-radius: 1.25rem 1.25rem 0 0;
    overflow: hidden;
    background: #E6FFFA;
    aspect-ratio: 4 / 3;
}

.catalog-featured-grid__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}

.catalog-featured-grid__card:hover .catalog-featured-grid__img {
    transform: scale(1.05);
}

.catalog-featured-grid__status-tag {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    background: rgba(255, 255, 255, 0.9);
    color: #047857;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.65rem;
    border-radius: 9999px;
    border: 1px solid rgba(5, 150, 105, 0.25);
    backdrop-filter: blur(4px);
}

.catalog-featured-grid__stars {
    color: #F59E0B;
    font-size: 0.875rem;
    display: inline-flex;
    gap: 2px;
}

.catalog-featured-grid__rating-count {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #5F8783;
}

.catalog-featured-grid__card-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    line-height: 1.35;
    color: #0F2F2E;
}

.catalog-featured-grid__title-link {
    color: #0F2F2E;
    text-decoration: none;
    transition: color 0.2s ease;
}

.catalog-featured-grid__title-link:hover {
    color: #0D9488;
}

.catalog-featured-grid__desc {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.875rem;
    line-height: 1.5;
    color: #3B615D;
}

.catalog-featured-grid__specs {
    padding-top: 0.5rem;
    border-top: 1px dashed rgba(13, 148, 136, 0.15);
}

.catalog-featured-grid__spec-item {
    font-size: 0.8125rem;
    color: #5F8783;
    margin-bottom: 0.25rem;
    display: flex;
    align-items: center;
}

.catalog-featured-grid__spec-item i {
    color: #0D9488;
}

.catalog-featured-grid__footer {
    border-top: 1px solid rgba(13, 148, 136, 0.12);
}

.catalog-featured-grid__price-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: #5F8783;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.catalog-featured-grid__price-val {
    font-family: 'Outfit', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: #0F766E;
}

.catalog-featured-grid__btn {
    background: linear-gradient(135deg, #0D9488 0%, #0284C7 100%);
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 9999px;
    padding: 0.75rem 1.25rem;
    font-family: 'Outfit', sans-serif;
    font-size: 0.9375rem;
    font-weight: 600;
    box-shadow: 0 8px 20px -4px rgba(13, 148, 136, 0.32);
    transition: all 0.25s ease-in-out;
}

.catalog-featured-grid__btn:hover,
.catalog-featured-grid__btn:focus {
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 12px 26px -4px rgba(13, 148, 136, 0.45);
}

@media (max-width: 767.98px) {
    .catalog-featured-grid__title {
        font-size: 1.6rem;
        hyphens: auto;
    }

    .catalog-featured-grid__card-title {
        font-size: 1.05rem;
    }

    .catalog-featured-grid {
        padding-top: 2.5rem !important;
        padding-bottom: 2.5rem !important;
    }
}

/* ===== care_and_maintenance ===== */
.care-maintenance-section {
    background: linear-gradient(135deg, #F0FDF4 0%, #ECFEFF 45%, #F0FDFA 100%);
    color: #0F2F2E;
    position: relative;
}

.care-maintenance-section .care-badge {
    background: rgba(45, 212, 191, 0.15);
    color: #0F766E;
    border: 1px solid rgba(20, 184, 166, 0.28);
    border-radius: 9999px;
    padding: 0.45rem 1.15rem;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.care-maintenance-section .care-main-heading {
    color: #0F2F2E;
    font-family: 'Outfit', 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 2.25rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

@media (max-width: 767.98px) {
    .care-maintenance-section .care-main-heading {
        font-size: 1.6rem;
        hyphens: auto;
    }
}

.care-maintenance-section .care-lead-text {
    color: #3B615D;
    font-size: 1.05rem;
    line-height: 1.6;
}

.care-maintenance-section .care-filter-tabs {
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(20, 184, 166, 0.25);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 8px 24px -6px rgba(13, 148, 136, 0.08);
}

.care-maintenance-section .care-tab-btn {
    border: none;
    background: transparent;
    color: #3B615D;
    padding: 0.55rem 1.25rem;
    border-radius: 9999px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.25s ease-in-out;
}

.care-maintenance-section .care-tab-btn:hover {
    color: #0D9488;
    background: rgba(45, 212, 191, 0.12);
}

.care-maintenance-section .care-tab-btn.active {
    background: linear-gradient(135deg, #0D9488 0%, #0284C7 100%);
    color: #FFFFFF;
    box-shadow: 0 4px 14px rgba(13, 148, 136, 0.28);
}

.care-maintenance-section .care-card {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 1.25rem;
    box-shadow: 0 12px 36px -8px rgba(13, 148, 136, 0.08), 0 4px 16px -4px rgba(2, 132, 199, 0.05);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.care-maintenance-section .care-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -10px rgba(13, 148, 136, 0.18);
    border-color: rgba(45, 212, 191, 0.45);
}

.care-maintenance-section .care-icon-box {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(45, 212, 191, 0.15);
    color: #0D9488;
    border: 1px solid rgba(20, 184, 166, 0.25);
    border-radius: 12px;
    font-size: 1.4rem;
}

.care-maintenance-section .care-step-number {
    margin-left: auto;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.15rem;
    color: #5F8783;
    letter-spacing: 0.05em;
}

.care-maintenance-section .care-card-title {
    color: #0F2F2E;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1.2rem;
    line-height: 1.35;
}

@media (max-width: 767.98px) {
    .care-maintenance-section .care-card-title {
        font-size: 1.05rem;
        hyphens: auto;
    }
}

.care-maintenance-section .care-card-desc {
    color: #3B615D;
    font-size: 0.95rem;
    line-height: 1.55;
}

.care-maintenance-section .care-pro-tip-box {
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(20, 184, 166, 0.35);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 10px 30px -6px rgba(13, 148, 136, 0.12);
}

.care-maintenance-section .care-tip-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0D9488 0%, #0284C7 100%);
    color: #FFFFFF;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 6px 16px -2px rgba(13, 148, 136, 0.3);
}

.care-maintenance-section .care-tip-title {
    color: #0F2F2E;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.15rem;
    line-height: 1.3;
}

@media (max-width: 767.98px) {
    .care-maintenance-section .care-tip-title {
        font-size: 1rem;
    }
}

.care-maintenance-section .care-tip-desc {
    color: #3B615D;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* ===== limited_time_offers ===== */
.deadline-promos-section {
    background: linear-gradient(135deg, #F0FDF4 0%, #ECFEFF 45%, #F0FDFA 100%);
    overflow: hidden;
}

.deadline-promos-section .promo-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(45, 212, 191, 0.18);
    color: #0F766E;
    font-size: 0.8125rem;
    letter-spacing: 0.05em;
    padding: 0.4rem 1rem;
    border-radius: 9999px;
    border: 1px solid rgba(20, 184, 166, 0.35);
}

.deadline-promos-section .promo-heading {
    font-family: 'Outfit', 'Plus Jakarta Sans', sans-serif;
    font-size: 2.25rem;
    font-weight: 700;
    color: #0F2F2E;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.deadline-promos-section .promo-subheading {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.0625rem;
    color: #3B615D;
    line-height: 1.6;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.deadline-promos-section .timer-container {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(16px);
    padding: 0.85rem 1.5rem;
    border-radius: 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 12px 36px -8px rgba(13, 148, 136, 0.12);
    display: inline-flex;
}

.deadline-promos-section .timer-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 58px;
}

.deadline-promos-section .timer-val {
    font-family: 'Outfit', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #0F766E;
    line-height: 1.1;
}

.deadline-promos-section .timer-label {
    font-size: 0.6875rem;
    text-transform: uppercase;
    font-weight: 600;
    color: #5F8783;
    letter-spacing: 0.05em;
    margin-top: 2px;
}

.deadline-promos-section .timer-divider {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #0D9488;
    align-self: flex-start;
    margin-top: 2px;
}

.deadline-promos-section .deal-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(16px);
    border-radius: 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 12px 36px -8px rgba(13, 148, 136, 0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    overflow: hidden;
}

.deadline-promos-section .deal-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 45px -10px rgba(13, 148, 136, 0.2);
}

.deadline-promos-section .card-img-wrapper {
    height: 230px;
    background-color: #E6FFFA;
}

.deadline-promos-section .deal-img {
    height: 230px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.deadline-promos-section .deal-card:hover .deal-img {
    transform: scale(1.04);
}

.deadline-promos-section .discount-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    background: linear-gradient(135deg, #0D9488 0%, #0284C7 100%);
    color: #FFFFFF;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.35rem 0.75rem;
    border-radius: 9999px;
    box-shadow: 0 4px 12px rgba(13, 148, 136, 0.3);
}

.deadline-promos-section .stock-indicator {
    font-size: 0.75rem;
    font-weight: 600;
    color: #047857;
    display: inline-flex;
    align-items: center;
}

.deadline-promos-section .rating-badge {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #0F2F2E;
    display: inline-flex;
    align-items: center;
}

.deadline-promos-section .deal-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.3;
}

.deadline-promos-section .deal-title-link {
    color: #0F2F2E;
    text-decoration: none;
    transition: color 0.2s ease;
}

.deadline-promos-section .deal-title-link:hover {
    color: #0D9488;
}

.deadline-promos-section .deal-desc {
    font-size: 0.875rem;
    color: #3B615D;
    line-height: 1.5;
}

.deadline-promos-section .pricing-row {
    border-top: 1px dashed rgba(13, 148, 136, 0.2);
    padding-top: 0.75rem;
}

.deadline-promos-section .current-price {
    font-family: 'Outfit', sans-serif;
    font-size: 1.625rem;
    font-weight: 800;
    color: #0D9488;
}

.deadline-promos-section .original-price {
    font-family: 'Outfit', sans-serif;
    font-size: 1.0625rem;
    font-weight: 500;
    color: #5F8783;
    text-decoration: line-through;
}

.deadline-promos-section .deal-btn {
    background: linear-gradient(135deg, #0D9488 0%, #0284C7 100%);
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 9999px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    font-size: 0.9375rem;
    box-shadow: 0 8px 20px -4px rgba(13, 148, 136, 0.32);
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
    cursor: pointer;
}

.deadline-promos-section .deal-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 26px -4px rgba(13, 148, 136, 0.45);
    filter: brightness(1.05);
    color: #FFFFFF;
}

.deadline-promos-section .promo-terms-panel {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(20, 184, 166, 0.25);
    box-shadow: 0 8px 24px -6px rgba(13, 148, 136, 0.06);
}

.deadline-promos-section .terms-icon {
    font-size: 1.5rem;
    color: #0D9488;
}

.deadline-promos-section .terms-heading {
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #0F2F2E;
}

.deadline-promos-section .term-title {
    font-size: 0.875rem;
    font-weight: 700;
    color: #0F766E;
}

.deadline-promos-section .term-text {
    font-size: 0.8125rem;
    color: #3B615D;
    line-height: 1.45;
    display: block;
}

@media (max-width: 767.98px) {
    .deadline-promos-section .promo-heading {
        font-size: 1.625rem;
        hyphens: auto;
    }

    .deadline-promos-section .promo-subheading {
        font-size: 0.9375rem;
    }

    .deadline-promos-section .deal-title {
        font-size: 1.125rem;
    }

    .deadline-promos-section .current-price {
        font-size: 1.35rem;
    }

    .deadline-promos-section .timer-val {
        font-size: 1.35rem;
    }

    .deadline-promos-section .timer-box {
        min-width: 44px;
    }
}

/* ===== in_store_availability ===== */
.store-availability-section {
    background: linear-gradient(135deg, #F0FDF4 0%, #ECFEFF 45%, #F0FDFA 100%);
    color: #0F2F2E;
    position: relative;
    overflow: hidden
}

.store-availability-section .store-availability-header {
    max-width: 720px
}

.store-availability-section .availability-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(45, 212, 191, 0.18);
    color: #0F766E;
    border: 1px solid rgba(20, 184, 166, 0.3);
    border-radius: 9999px;
    padding: 0.4rem 1rem;
    font-size: 0.875rem;
    font-weight: 600
}

.store-availability-section .availability-title {
    font-family: 'Outfit', 'Plus Jakarta Sans', sans-serif;
    color: #0F2F2E;
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.75rem
}

.store-availability-section .availability-subtitle {
    color: #3B615D;
    font-size: 1rem;
    line-height: 1.55;
    margin-bottom: 0
}

.store-availability-section .location-tab-btn {
    background: rgba(255, 255, 255, 0.7);
    color: #0F766E;
    border: 1px solid rgba(20, 184, 166, 0.35);
    border-radius: 9999px;
    padding: 0.6rem 1.4rem;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.25s ease-in-out;
    backdrop-filter: blur(10px);
    cursor: pointer
}

.store-availability-section .location-tab-btn:hover {
    background: rgba(255, 255, 255, 0.95);
    color: #0D9488;
    transform: translateY(-2px)
}

.store-availability-section .location-tab-btn.active {
    background: linear-gradient(135deg, #0D9488 0%, #0284C7 100%);
    color: #FFFFFF;
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 6px 16px -2px rgba(13, 148, 136, 0.35)
}

.store-availability-section .availability-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 1.25rem;
    box-shadow: 0 12px 36px -8px rgba(13, 148, 136, 0.08), 0 4px 16px -4px rgba(2, 132, 199, 0.05);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden
}

.store-availability-section .availability-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 42px -10px rgba(13, 148, 136, 0.2), 0 8px 24px -6px rgba(2, 132, 199, 0.1)
}

.store-availability-section .card-thumb {
    width: 100%;
    height: 190px;
    object-fit: cover;
    border-top-left-radius: 1.25rem;
    border-top-right-radius: 1.25rem;
    transition: transform 0.4s ease
}

.store-availability-section .availability-card:hover .card-thumb {
    transform: scale(1.04)
}

.store-availability-section .stock-pill {
    position: absolute;
    top: 12px;
    left: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 9999px;
    padding: 0.3rem 0.75rem;
    backdrop-filter: blur(8px)
}

.store-availability-section .stock-pill-ready {
    background: rgba(5, 150, 105, 0.9);
    color: #FFFFFF
}

.store-availability-section .sku-code {
    font-size: 0.75rem;
    letter-spacing: 0.04em;
    color: #5F8783;
    font-weight: 600
}

.store-availability-section .item-price {
    color: #0D9488;
    font-size: 1.15rem;
    font-family: 'Outfit', sans-serif
}

.store-availability-section .product-name {
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.3
}

.store-availability-section .product-link {
    color: #0F2F2E;
    text-decoration: none;
    transition: color 0.2s ease
}

.store-availability-section .product-link:hover {
    color: #0D9488
}

.store-availability-section .product-spec {
    font-size: 0.875rem;
    color: #3B615D;
    line-height: 1.45
}

.store-availability-section .hub-stock-list {
    background: rgba(240, 253, 250, 0.6);
    border-radius: 0.75rem;
    padding: 0.6rem 0.75rem;
    border: 1px solid rgba(20, 184, 166, 0.15)
}

.store-availability-section .hub-name {
    font-size: 0.8rem;
    color: #0F2F2E;
    font-weight: 500
}

.store-availability-section .hub-qty {
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.15rem 0.45rem;
    border-radius: 4px
}

.store-availability-section .hub-qty.in-stock {
    background: rgba(5, 150, 105, 0.15);
    color: #047857
}

.store-availability-section .hub-qty.low-stock {
    background: rgba(2, 132, 199, 0.12);
    color: #0369A1
}

.store-availability-section .pickup-info-box {
    background: rgba(255, 255, 255, 0.7);
    border-radius: 0.5rem;
    border: 1px dashed rgba(20, 184, 166, 0.3)
}

.store-availability-section .text-dark-teal {
    color: #0F766E
}

.store-availability-section .text-teal {
    color: #0D9488
}

.store-availability-section .btn-cart-glass {
    background: linear-gradient(135deg, #0D9488 0%, #0284C7 100%);
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 9999px;
    padding: 0.75rem 1rem;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 6px 18px -3px rgba(13, 148, 136, 0.3);
    transition: all 0.25s ease-in-out;
    cursor: pointer
}

.store-availability-section .btn-cart-glass:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px -4px rgba(13, 148, 136, 0.45);
    color: #FFFFFF
}

.store-availability-section .store-pickup-guarantee {
    max-width: 960px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(20, 184, 166, 0.22);
    border-radius: 1.25rem
}

.store-availability-section .guarantee-icon {
    width: 46px;
    height: 46px;
    min-width: 46px;
    background: linear-gradient(135deg, #0D9488 0%, #0284C7 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 1.25rem;
    box-shadow: 0 6px 14px rgba(13, 148, 136, 0.25)
}

.store-availability-section .guarantee-title {
    color: #0F2F2E;
    font-size: 1rem;
    font-weight: 700
}

.store-availability-section .guarantee-desc {
    color: #5F8783;
    font-size: 0.85rem
}

@media(max-width:767.98px) {
    .store-availability-section .availability-title {
        font-size: 1.5rem
    }

    .store-availability-section .card-thumb {
        height: 170px
    }

    .store-availability-section .location-tab-btn {
        font-size: 0.8rem;
        padding: 0.5rem 1rem
    }
}

/* ===== latest_from_the_blog ===== */
.gh-blog-grid {
    position: relative;
    background: linear-gradient(135deg, #F0FDF4 0%, #ECFEFF 45%, #F0FDFA 100%);
    color: #0F2F2E
}

.gh-blog-grid .gh-blog-pill {
    background: rgba(45, 212, 191, 0.15);
    color: #0F766E;
    border: 1px solid rgba(20, 184, 166, 0.28);
    border-radius: 9999px;
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.02em
}

.gh-blog-grid .gh-blog-title {
    font-family: 'Outfit', 'Plus Jakarta Sans', sans-serif;
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.2;
    color: #0F2F2E;
    letter-spacing: -0.02em
}

.gh-blog-grid .gh-blog-subtitle {
    color: #3B615D;
    font-size: 1.05rem;
    line-height: 1.6;
    max-width: 620px
}

.gh-blog-grid .gh-blog-all-btn {
    background: rgba(255, 255, 255, 0.7);
    color: #0F766E;
    border: 1px solid rgba(20, 184, 166, 0.35);
    backdrop-filter: blur(12px);
    border-radius: 9999px;
    padding: 0.75rem 1.6rem;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.25s ease-in-out
}

.gh-blog-grid .gh-blog-all-btn:hover {
    background: rgba(255, 255, 255, 0.95);
    color: #0D9488;
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(13, 148, 136, 0.15)
}

.gh-blog-grid .gh-blog-card {
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.85);
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 12px 36px -8px rgba(13, 148, 136, 0.08), 0 4px 16px -4px rgba(2, 132, 199, 0.05);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s ease
}

.gh-blog-grid .gh-blog-card:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 22px 48px -10px rgba(13, 148, 136, 0.18), 0 8px 24px -6px rgba(2, 132, 199, 0.1);
    border-color: rgba(20, 184, 166, 0.35)
}

.gh-blog-grid .gh-blog-card-media {
    overflow: hidden;
    border-bottom: 1px solid rgba(13, 148, 136, 0.08)
}

.gh-blog-grid .gh-blog-img-link {
    position: relative;
    display: block;
    overflow: hidden
}

.gh-blog-grid .gh-blog-img {
    height: 260px;
    object-fit: cover;
    transition: transform 0.5s ease
}

.gh-blog-grid .gh-blog-card:hover .gh-blog-img {
    transform: scale(1.05)
}

.gh-blog-grid .gh-blog-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(255, 255, 255, 0.92);
    color: #0D9488;
    border: 1px solid rgba(20, 184, 166, 0.28);
    border-radius: 9999px;
    padding: 0.3rem 0.85rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    backdrop-filter: blur(8px);
    z-index: 2
}

.gh-blog-grid .gh-blog-meta {
    font-size: 0.85rem;
    color: #5F8783
}

.gh-blog-grid .gh-blog-meta-item i {
    color: #0D9488
}

.gh-blog-grid .gh-blog-card-title {
    font-family: 'Outfit', 'Plus Jakarta Sans', sans-serif;
    font-size: 1.45rem;
    font-weight: 700;
    line-height: 1.28;
    margin: 0
}

.gh-blog-grid .gh-title-link {
    color: #0F2F2E;
    text-decoration: none;
    transition: color 0.2s ease
}

.gh-blog-grid .gh-title-link:hover {
    color: #0D9488
}

.gh-blog-grid .gh-blog-card-desc {
    color: #3B615D;
    font-size: 0.95rem;
    line-height: 1.55
}

.gh-blog-grid .gh-blog-card-footer {
    border-top: 1px solid rgba(13, 148, 136, 0.1)
}

.gh-blog-grid .gh-read-btn {
    background: linear-gradient(135deg, #0D9488 0%, #0284C7 100%);
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 9999px;
    padding: 0.75rem 1.5rem;
    font-size: 0.925rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 8px 20px -4px rgba(13, 148, 136, 0.22);
    transition: all 0.25s ease-in-out
}

.gh-blog-grid .gh-read-btn:hover {
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px -4px rgba(13, 148, 136, 0.35)
}

@media (max-width:767.98px) {
    .gh-blog-grid .gh-blog-title {
        font-size: 16px;
        hyphens: auto
    }

    .gh-blog-grid .gh-blog-card-title {
        font-size: 14px;
        hyphens: auto
    }

    .gh-blog-grid .gh-blog-img {
        height: 200px
    }

    .gh-blog-grid .gh-blog-card-body {
        padding: 1.25rem
    }

    .gh-blog-grid .gh-blog-subtitle {
        font-size: 0.9rem
    }
}

/* ===== footer ===== */
.gh-footer {
    background: linear-gradient(180deg, #F0FDF4 0%, #ECFEFF 50%, #E6FFFA 100%);
    padding: 3rem 0 2rem 0;
    position: relative;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    overflow: hidden;
}

.gh-footer__glass-card {
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 1.5rem;
    padding: 2.25rem 2rem 1.75rem 2rem;
    box-shadow: 0 12px 36px -8px rgba(13, 148, 136, 0.08), 0 4px 16px -4px rgba(2, 132, 199, 0.05);
}

.gh-footer__logo {
    max-width: 44px;
    max-height: 44px;
    object-fit: contain;
}

.gh-footer__brand-title {
    font-family: 'Outfit', 'Plus Jakarta Sans', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: #0F2F2E;
    letter-spacing: -0.02em;
}

.gh-footer__brand-desc {
    font-size: 0.925rem;
    line-height: 1.6;
    color: #3B615D;
    max-width: 320px;
}

.gh-footer__origin {
    padding: 0.4rem 0.85rem;
    background: rgba(45, 212, 191, 0.12);
    border: 1px solid rgba(20, 184, 166, 0.25);
    border-radius: 9999px;
}

.gh-footer__origin-icon {
    color: #0D9488;
    font-size: 1rem;
}

.gh-footer__origin-text {
    font-size: 0.825rem;
    font-weight: 600;
    color: #0F766E;
}

.gh-footer__heading {
    font-family: 'Outfit', 'Plus Jakarta Sans', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #0F2F2E;
    margin-bottom: 1.1rem;
    letter-spacing: -0.01em;
}

.gh-footer__links-list li {
    margin-bottom: 0.55rem;
}

.gh-footer__nav-link {
    font-size: 0.925rem;
    color: #3B615D;
    text-decoration: none;
    transition: all 0.25s ease-in-out;
    display: inline-block;
}

.gh-footer__nav-link:hover,
.gh-footer__nav-link:focus-visible {
    color: #0D9488;
    transform: translateX(3px);
}

.gh-footer__contact-item {
    color: #3B615D;
    transition: all 0.25s ease-in-out;
}

.gh-footer__icon-pill {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(20, 184, 166, 0.28);
    border-radius: 50%;
    color: #0D9488;
    font-size: 1rem;
    flex-shrink: 0;
    transition: all 0.25s ease-in-out;
}

.gh-footer__contact-val {
    font-size: 0.9rem;
    font-weight: 500;
    word-break: break-word;
}

.gh-footer__contact-item:hover .gh-footer__icon-pill,
.gh-footer__contact-item:focus-visible .gh-footer__icon-pill {
    background: #0D9488;
    color: #FFFFFF;
    transform: scale(1.08);
}

.gh-footer__contact-item:hover .gh-footer__contact-val,
.gh-footer__contact-item:focus-visible .gh-footer__contact-val {
    color: #0D9488;
}

.gh-footer__divider {
    height: 1px;
    background: linear-gradient(90deg, rgba(20, 184, 166, 0.05) 0%, rgba(20, 184, 166, 0.3) 50%, rgba(20, 184, 166, 0.05) 100%);
}

.gh-footer__copyright {
    font-size: 0.85rem;
    color: #5F8783;
}

.gh-footer__badge {
    font-size: 0.775rem;
    font-weight: 600;
    color: #0F766E;
    background: rgba(45, 212, 191, 0.15);
    border: 1px solid rgba(45, 212, 191, 0.3);
    padding: 0.3rem 0.75rem;
    border-radius: 9999px;
    display: inline-block;
}

@media (max-width: 767.98px) {
    .gh-footer {
        padding: 2.5rem 0 1.5rem 0;
    }

    .gh-footer__glass-card {
        padding: 1.5rem 1.25rem;
        border-radius: 1.25rem;
    }

    .gh-footer__heading {
        font-size: 0.95rem;
        margin-bottom: 0.75rem;
    }

    .gh-footer__brand-title {
        font-size: 1.2rem;
    }

    .gh-footer__brand-desc {
        font-size: 0.875rem;
    }

    .gh-footer__nav-link,
    .gh-footer__contact-val {
        font-size: 0.85rem;
    }
}

/* ===== PAGE: catalog ===== */
.catalog-main-block { background: linear-gradient(135deg, #F0FDF4 0%, #ECFEFF 45%, #F0FDFA 100%); min-height: 80vh; font-family: 'Plus Jakarta Sans', sans-serif; }
.catalog-main-block .text-teal { color: #0D9488 !important; }
.catalog-main-block .text-teal-dark { color: #0F2F2E !important; font-family: 'Outfit', sans-serif; }
.catalog-main-block .text-teal-secondary { color: #3B615D !important; }
.catalog-main-block .text-teal-muted { color: #5F8783 !important; }
.catalog-main-block .text-amber { color: #F59E0B !important; }
.catalog-main-block .bg-light-teal { background-color: rgba(45, 212, 191, 0.15) !important; }
.catalog-main-block .category-pill { background: rgba(45, 212, 191, 0.18); border: 1px solid rgba(20, 184, 166, 0.3); }
.catalog-main-block .category-pill-text { color: #0F766E; font-size: 0.875rem; letter-spacing: 0.02em; }
.catalog-main-block .catalog-main-title { font-size: 2.5rem; line-height: 1.2; letter-spacing: -0.02em; }
@media (max-width: 767.98px) { .catalog-main-block .catalog-main-title { font-size: 1.125rem; hyphens: auto; } }
.catalog-main-block .catalog-subtitle { max-width: 680px; font-size: 1.05rem; line-height: 1.6; }
.catalog-main-block .catalog-filter-card { background: rgba(255, 255, 255, 0.75); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border: 1px solid rgba(255, 255, 255, 0.85); box-shadow: 0 12px 36px -8px rgba(13, 148, 136, 0.08); }
.catalog-main-block .catalog-search-input { background: rgba(255, 255, 255, 0.9); border: 1px solid rgba(20, 184, 166, 0.28); border-radius: 9999px; font-size: 0.925rem; color: #0F2F2E; padding: 0.65rem 1rem 0.65rem 2.75rem; transition: all 0.25s ease-in-out; }
.catalog-main-block .catalog-search-input::placeholder { color: #5F8783; opacity: 0.9; }
.catalog-main-block .catalog-search-input:focus { background: #FFFFFF; border-color: #0D9488; box-shadow: 0 0 0 4px rgba(45, 212, 191, 0.25); color: #0F2F2E; outline: none; }
.catalog-main-block .filter-chip-btn { background: rgba(255, 255, 255, 0.7); border: 1px solid rgba(20, 184, 166, 0.3); border-radius: 9999px; color: #0F766E; font-size: 0.85rem; font-weight: 600; padding: 0.5rem 1rem; transition: all 0.25s ease-in-out; cursor: pointer; }
.catalog-main-block .filter-chip-btn:hover { background: rgba(255, 255, 255, 0.95); color: #0D9488; transform: translateY(-1px); }
.catalog-main-block .filter-chip-btn.active { background: linear-gradient(135deg, #0D9488 0%, #0284C7 100%); color: #FFFFFF; border-color: transparent; box-shadow: 0 4px 14px rgba(13, 148, 136, 0.25); }
.catalog-main-block .catalog-sort-select { background: rgba(255, 255, 255, 0.9); border: 1px solid rgba(20, 184, 166, 0.28); border-radius: 9999px; color: #0F2F2E; font-size: 0.875rem; padding: 0.55rem 2rem 0.55rem 1rem; cursor: pointer; }
.catalog-main-block .catalog-sort-select:focus { border-color: #0D9488; box-shadow: 0 0 0 4px rgba(45, 212, 191, 0.25); }
.catalog-main-block .product-card-glass { background: rgba(255, 255, 255, 0.82); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border: 1px solid rgba(255, 255, 255, 0.9); box-shadow: 0 12px 36px -8px rgba(13, 148, 136, 0.08); transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1); }
.catalog-main-block .product-card-glass:hover { transform: translateY(-6px); box-shadow: 0 22px 48px -10px rgba(13, 148, 136, 0.2); border-color: rgba(45, 212, 191, 0.4); }
.catalog-main-block .product-status-tag { background: #0284C7; color: #FFFFFF; border: 1px solid #0284C7; z-index: 2; top: 0.75rem !important; right: auto !important; left: 0.75rem !important; }
.catalog-main-block .product-img-wrap { aspect-ratio: 4 / 3; background: #E6F7F5; }
.catalog-main-block .product-thumb { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.catalog-main-block .product-card-glass:hover .product-thumb { transform: scale(1.05); }
.catalog-main-block .product-title { font-size: 1.15rem; line-height: 1.3; font-family: 'Outfit', sans-serif; }
@media (max-width: 767.98px) { .catalog-main-block .product-title { font-size: 0.875rem; hyphens: auto; } }
.catalog-main-block .product-desc { line-height: 1.5; }
.catalog-main-block .spec-chips { min-height: 26px; }
.catalog-main-block .spec-chip { background: rgba(240, 253, 250, 0.9); border: 1px solid rgba(20, 184, 166, 0.18); color: #3B615D; font-size: 0.75rem; padding: 0.2rem 0.55rem; border-radius: 0.375rem; font-weight: 500; }
.catalog-main-block .border-top-glass { border-top: 1px solid rgba(13, 148, 136, 0.12); }
.catalog-main-block .price-currency { font-weight: 600; }
.catalog-main-block .price-val { font-size: 1.35rem; font-family: 'Outfit', sans-serif; }
.catalog-main-block .btn-catalog-primary { background: linear-gradient(135deg, #0D9488 0%, #0284C7 100%); color: #FFFFFF !important; border: 1px solid rgba(255, 255, 255, 0.3); box-shadow: 0 6px 16px -3px rgba(13, 148, 136, 0.3); transition: all 0.25s ease-in-out; font-size: 0.875rem; }
.catalog-main-block .btn-catalog-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 22px -3px rgba(13, 148, 136, 0.45); color: #FFFFFF !important; filter: brightness(1.05); }
.catalog-main-block .btn-catalog-secondary { background: rgba(255, 255, 255, 0.85); color: #0F766E !important; border: 1px solid rgba(20, 184, 166, 0.35); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); box-shadow: 0 4px 14px rgba(13, 148, 136, 0.08); transition: all 0.25s ease-in-out; font-size: 0.9rem; }
.catalog-main-block .btn-catalog-secondary:hover { background: #FFFFFF; color: #0D9488 !important; transform: translateY(-2px); }
.catalog-main-block .catalog-info-banner { background: rgba(255, 255, 255, 0.7); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); border: 1px solid rgba(20, 184, 166, 0.22); box-shadow: 0 12px 36px -8px rgba(13, 148, 136, 0.08); }
.catalog-main-block .banner-icon-box { width: 56px; height: 56px; background: rgba(45, 212, 191, 0.2); border: 1px solid rgba(20, 184, 166, 0.3); }
.catalog-main-block .empty-icon-wrap { width: 72px; height: 72px; background: rgba(45, 212, 191, 0.15); border: 1px solid rgba(20, 184, 166, 0.25); }
.catalog-main-block .catalog-empty-state { background: rgba(255, 255, 255, 0.8); border: 1px dashed rgba(20, 184, 166, 0.35); }

/* ===== PAGE: about ===== */
.gh-about-wrapper { background: linear-gradient(135deg, #F0FDF4 0%, #ECFEFF 45%, #F0FDFA 100%); min-height: 100vh; color: #0F2F2E; }
.gh-about-section { font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif; }
.gh-about-section .gh-badge { background: rgba(45, 212, 191, 0.18); color: #0F766E; border: 1px solid rgba(20, 184, 166, 0.35); padding: 0.45rem 1.15rem; border-radius: 9999px; font-size: 0.875rem; font-weight: 600; }
.gh-about-section .gh-main-title { font-family: 'Outfit', sans-serif; font-size: clamp(2rem, 4vw, 3.25rem); font-weight: 800; color: #0F2F2E; line-height: 1.15; letter-spacing: -0.02em; }
.gh-about-section .gh-lead-text { font-size: 1.125rem; line-height: 1.6; color: #3B615D; max-width: 800px; }
.gh-about-section .gh-kicker { font-size: 0.8125rem; font-weight: 700; color: #0D9488; letter-spacing: 0.08em; }
.gh-about-section .gh-section-heading { font-family: 'Outfit', sans-serif; font-size: clamp(1.6rem, 3vw, 2.25rem); font-weight: 700; color: #0F2F2E; line-height: 1.25; }
.gh-about-section .gh-card-title { font-family: 'Outfit', sans-serif; font-size: 1.25rem; font-weight: 700; color: #0F2F2E; line-height: 1.35; }
.gh-about-section .gh-text { font-size: 0.95rem; line-height: 1.6; color: #3B615D; }
.gh-about-section .gh-glass-card { background: rgba(255, 255, 255, 0.72); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); border-radius: 1.5rem; border: 1px solid rgba(255, 255, 255, 0.85); box-shadow: 0 12px 36px -8px rgba(13, 148, 136, 0.08), 0 4px 16px -4px rgba(2, 132, 199, 0.05); transition: transform 0.3s ease, box-shadow 0.3s ease; }
.gh-about-section .gh-glass-card:hover { transform: translateY(-4px); box-shadow: 0 20px 42px -10px rgba(13, 148, 136, 0.15); }
.gh-about-section .gh-image-container { border-radius: 1.5rem; border: 1px solid rgba(255, 255, 255, 0.85); box-shadow: 0 12px 36px -8px rgba(13, 148, 136, 0.12); }
.gh-about-section .gh-rounded-img { border-radius: 1.5rem; object-fit: cover; height: 100%; min-height: 340px; display: block; }
.gh-about-section .gh-floating-stat { position: absolute; bottom: 1.25rem; left: 1.25rem; background: rgba(255, 255, 255, 0.92); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-radius: 1rem; border: 1px solid rgba(20, 184, 166, 0.25); box-shadow: 0 8px 24px rgba(15, 118, 110, 0.15); }
.gh-about-section .gh-stat-icon-box { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, #0D9488 0%, #0284C7 100%); color: #ffffff; display: flex; align-items: center; justify-content: center; font-size: 1.25rem; }
.gh-about-section .gh-stat-number { font-family: 'Outfit', sans-serif; font-size: 1.25rem; font-weight: 800; color: #0F2F2E; line-height: 1; }
.gh-about-section .gh-stat-label { font-size: 0.75rem; font-weight: 600; color: #5F8783; }
.gh-about-section .gh-feature-icon-wrapper { width: 52px; height: 52px; border-radius: 1rem; background: rgba(45, 212, 191, 0.18); border: 1px solid rgba(20, 184, 166, 0.3); color: #0D9488; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; }
.gh-about-section .gh-value-item { font-size: 0.9rem; font-weight: 600; color: #0F2F2E; }
.gh-about-section .text-accent { color: #059669 !important; }
.gh-about-section .gh-banner-card { background: rgba(255, 255, 255, 0.75); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-radius: 1.75rem; border: 1px solid rgba(20, 184, 166, 0.28); box-shadow: 0 16px 40px -10px rgba(13, 148, 136, 0.12); }
.gh-about-section .gh-btn-primary { background: linear-gradient(135deg, #0D9488 0%, #0284C7 100%); color: #FFFFFF; border: 1px solid rgba(255, 255, 255, 0.3); border-radius: 9999px; padding: 0.85rem 1.85rem; font-weight: 600; box-shadow: 0 8px 20px -4px rgba(13, 148, 136, 0.32); transition: transform 0.2s ease, box-shadow 0.2s ease; text-decoration: none; display: inline-flex; align-items: center; }
.gh-about-section .gh-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 26px -4px rgba(13, 148, 136, 0.45); color: #FFFFFF; }
.gh-about-section .gh-btn-glass { background: rgba(255, 255, 255, 0.85); color: #0F766E; border: 1px solid rgba(20, 184, 166, 0.35); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-radius: 9999px; padding: 0.85rem 1.85rem; font-weight: 600; box-shadow: 0 4px 14px rgba(13, 148, 136, 0.08); transition: all 0.2s ease; text-decoration: none; display: inline-flex; align-items: center; }
.gh-about-section .gh-btn-glass:hover { background: #FFFFFF; color: #0D9488; transform: translateY(-2px); }
@media (max-width: 767.98px) { .gh-about-section .gh-main-title { font-size: 1.75rem; } .gh-about-section .gh-section-heading { font-size: 1.35rem; } .gh-about-section .gh-card-title { font-size: 1.15rem; } .gh-about-section .gh-btn-primary, .gh-about-section .gh-btn-glass { width: 100%; justify-content: center; } }

/* ===== PAGE: blog ===== */
.blog-main{background:linear-gradient(135deg,#F0FDF4 0%,#ECFEFF 45%,#F0FDFA 100%);min-height:70vh;position:relative}.blog-main .blog-main__badge{background:rgba(45,212,191,0.15);border:1px solid rgba(20,184,166,0.3);color:#0F766E;font-size:0.8125rem;letter-spacing:0.05em}.blog-main .blog-main__title{font-family:'Outfit','Plus Jakarta Sans',sans-serif;color:#0F2F2E!important;font-size:2.5rem;line-height:1.2;letter-spacing:-0.02em}.blog-main .blog-main__subtitle{max-width:680px;color:#3B615D!important;font-size:1.125rem;line-height:1.6}.blog-main .blog-main__search-wrap{position:relative;width:100%}.blog-main .blog-main__search-icon{position:absolute;left:1.125rem;top:50%;transform:translateY(-50%);color:#0D9488;font-size:1.125rem;pointer-events:none;z-index:2}.blog-main .blog-main__search-input{background:rgba(255,255,255,0.85);border:1px solid rgba(20,184,166,0.25);border-radius:9999px;padding:0.75rem 1.25rem 0.75rem 2.85rem;color:#0F2F2E;font-size:0.9375rem;box-shadow:0 4px 14px rgba(13,148,136,0.06);transition:all .25s ease-in-out}.blog-main .blog-main__search-input::placeholder{color:#5F8783;opacity:1}.blog-main .blog-main__search-input:focus{background:#FFFFFF;border-color:#0D9488;box-shadow:0 0 0 4px rgba(45,212,191,0.25);color:#0F2F2E;outline:0}.blog-main .blog-main__filter-btn{background:rgba(255,255,255,0.7);color:#0F766E;border:1px solid rgba(20,184,166,0.25);border-radius:9999px;padding:0.55rem 1.2rem;font-size:0.875rem;font-weight:600;display:inline-flex;align-items:center;transition:all .25s ease-in-out;backdrop-filter:blur(8px);cursor:pointer}.blog-main .blog-main__filter-btn:hover{background:rgba(255,255,255,0.95);color:#0D9488;transform:translateY(-1px);border-color:#0D9488}.blog-main .blog-main__filter-btn.active{background:linear-gradient(135deg,#0D9488 0%,#0284C7 100%);color:#FFFFFF;border-color:transparent;box-shadow:0 6px 18px -3px rgba(13,148,136,0.35)}.blog-main .blog-main__card{background:rgba(255,255,255,0.78);backdrop-filter:blur(16px);border:1px solid rgba(255,255,255,0.9);border-radius:1.5rem;overflow:hidden;box-shadow:0 12px 36px -8px rgba(13,148,136,0.08),0 4px 16px -4px rgba(2,132,199,0.05);transition:all .35s cubic-bezier(0.16,1,0.3,1)}.blog-main .blog-main__card:hover{transform:translateY(-6px);box-shadow:0 22px 48px -10px rgba(13,148,136,0.18),0 8px 24px -6px rgba(2,132,199,0.1);border-color:rgba(45,212,191,0.5)}.blog-main .blog-main__card-media{height:250px;width:100%}.blog-main .blog-main__card-media img{transition:transform .5s ease}.blog-main .blog-main__card:hover .blog-main__card-media img{transform:scale(1.05)}.blog-main .blog-main__category-tag{background:rgba(15,47,46,0.85);backdrop-filter:blur(8px);color:#CCFBF1;font-size:0.75rem;font-weight:600;padding:0.35rem 0.85rem;border-radius:9999px;letter-spacing:0.03em;border:1px solid rgba(255,255,255,0.2)}.blog-main .blog-main__meta span{color:#5F8783}.blog-main .blog-main__card-title a{color:#0F2F2E;transition:color .2s ease}.blog-main .blog-main__card-title a:hover{color:#0D9488}.blog-main .blog-main__card-text{color:#3B615D!important;line-height:1.6;font-size:0.9375rem}.blog-main .blog-main__card-footer{border-top-color:rgba(13,148,136,0.12)!important}.blog-main .blog-main__read-more{color:#0D9488!important;transition:all .2s ease}.blog-main .blog-main__read-more i{transition:transform .2s ease}.blog-main .blog-main__read-more:hover{color:#0369A1!important}.blog-main .blog-main__read-more:hover i{transform:translateX(4px)}.blog-main .blog-main__empty{background:rgba(255,255,255,0.65);backdrop-filter:blur(12px);border-radius:1.5rem;border:1px dashed rgba(20,184,166,0.3);margin-top:1.5rem}.blog-main .blog-main__empty-icon{width:64px;height:64px;border-radius:50%;background:rgba(45,212,191,0.2);color:#0D9488;font-size:1.75rem}.blog-main .blog-main__reset-btn{background:linear-gradient(135deg,#0D9488 0%,#0284C7 100%);color:#FFFFFF;border-radius:9999px;padding:0.5rem 1.25rem;border:0;font-weight:600;box-shadow:0 4px 14px rgba(13,148,136,0.25);transition:all .2s ease}.blog-main .blog-main__reset-btn:hover{color:#FFFFFF;transform:translateY(-1px);box-shadow:0 8px 18px rgba(13,148,136,0.35)}@media (max-width:767.98px){.blog-main .blog-main__title{font-size:1.85rem}.blog-main .blog-main__subtitle{font-size:1rem}.blog-main .blog-main__card-media{height:200px}.blog-main .blog-main__card-title{font-size:1.2rem}.blog-main .blog-main__meta{flex-wrap:wrap;justify-content:flex-start;gap:0.5rem 0.875rem!important;font-size:0.8125rem}.blog-main .blog-main__meta span{white-space:nowrap}.blog-main .blog-main__meta i{font-size:0.9rem}}

/* ===== PAGE: cart ===== */
.cart-content-section {
  background: linear-gradient(135deg, #F0FDF4 0%, #ECFEFF 45%, #F0FDFA 100%);
  min-height: 80vh;
  color: #0F2F2E;
}

.cart-content-section .cart-breadcrumb-link {
  color: #3B615D;
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s ease;
}

.cart-content-section .cart-breadcrumb-link:hover {
  color: #0D9488;
}

.cart-content-section .cart-badge-pill {
  background: rgba(45, 212, 191, 0.18);
  color: #0F766E;
  border: 1px solid rgba(20, 184, 166, 0.35);
  border-radius: 9999px;
  padding: 0.35rem 0.95rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.cart-content-section .cart-main-heading {
  font-family: 'Outfit', 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 2.25rem;
  line-height: 1.2;
  color: #0F2F2E;
}

@media (max-width: 767.98px) {
  .cart-content-section .cart-main-heading {
    font-size: 1.75rem;
    hyphens: auto;
  }
}

.cart-content-section .cart-lead-text {
  color: #3B615D;
  font-size: 1.05rem;
  max-width: 780px;
  line-height: 1.55;
}

.cart-content-section .cart-glass-panel {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 1.35rem;
  box-shadow: 0 12px 36px -8px rgba(13, 148, 136, 0.08), 0 4px 16px -4px rgba(2, 132, 199, 0.05);
}

.cart-content-section .cart-panel-header {
  border-bottom-color: rgba(13, 148, 136, 0.12) !important;
}

.cart-content-section .cart-item-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(20, 184, 166, 0.2);
  border-radius: 1.15rem;
  padding: 1.25rem;
  margin-bottom: 1rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.cart-content-section .cart-item-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px -6px rgba(13, 148, 136, 0.12);
}

.cart-content-section .cart-item-image-wrapper {
  width: 90px;
  height: 90px;
  min-width: 90px;
  border-radius: 0.85rem;
  background: #F0FDFA;
  border: 1px solid rgba(13, 148, 136, 0.15);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-content-section .cart-item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-content-section .cart-item-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: #0F2F2E;
  line-height: 1.3;
}

.cart-content-section .cart-item-unit-price {
  font-size: 0.95rem;
  color: #0D9488;
  font-weight: 700;
}

.cart-content-section .cart-qty-group {
  background: rgba(240, 253, 250, 0.95);
  border: 1px solid rgba(20, 184, 166, 0.35);
  border-radius: 9999px;
  padding: 2px 6px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.cart-content-section .cart-qty-btn {
  background: #FFFFFF;
  border: 1px solid rgba(13, 148, 136, 0.2);
  color: #0F766E;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 0;
}

.cart-content-section .cart-qty-btn:hover {
  background: #0D9488;
  color: #FFFFFF;
  border-color: #0D9488;
}

.cart-content-section .cart-qty-val {
  min-width: 26px;
  text-align: center;
  font-weight: 600;
  color: #0F2F2E;
  font-size: 0.95rem;
}

.cart-content-section .cart-item-remove-btn {
  background: transparent;
  border: none;
  color: #DC2626;
  font-size: 0.875rem;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 6px;
  transition: background 0.2s ease;
}

.cart-content-section .cart-item-remove-btn:hover {
  background: rgba(220, 38, 38, 0.08);
}

.cart-content-section .cart-clear-btn {
  background: transparent;
  border: none;
  color: #5F8783;
  font-size: 0.875rem;
  cursor: pointer;
  transition: color 0.2s ease;
}

.cart-content-section .cart-clear-btn:hover {
  color: #DC2626;
}

.cart-content-section .cart-shipping-notice-box {
  background: rgba(240, 253, 250, 0.85);
  border: 1px dashed rgba(20, 184, 166, 0.45);
}

.cart-content-section .cart-notice-icon-circle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  box-shadow: 0 4px 10px rgba(13, 148, 136, 0.1);
}

.cart-content-section .cart-inline-text-link {
  color: #0D9488;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.cart-content-section .cart-inline-text-link:hover {
  color: #0F766E;
  text-decoration: underline;
}

.cart-content-section .cart-trust-panel {
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(20, 184, 166, 0.2);
  border-radius: 1.25rem;
}

.cart-content-section .cart-trust-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(45, 212, 191, 0.18);
  color: #0D9488;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
}

.cart-content-section .cart-financial-summary {
  background: rgba(240, 253, 250, 0.75);
  border: 1px solid rgba(13, 148, 136, 0.18);
}

.cart-content-section .cart-divider {
  border-color: rgba(13, 148, 136, 0.2);
  opacity: 1;
}

.cart-content-section .cart-field-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #0F2F2E;
  margin-bottom: 0.35rem;
}

.cart-content-section .cart-form-input,
.cart-content-section .cart-form-select,
.cart-content-section .cart-form-textarea {
  background: #FFFFFF;
  border: 1px solid rgba(20, 184, 166, 0.32);
  border-radius: 0.75rem;
  color: #0F2F2E;
  font-size: 0.925rem;
  padding: 0.65rem 0.95rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.cart-content-section .cart-form-input:focus,
.cart-content-section .cart-form-select:focus,
.cart-content-section .cart-form-textarea:focus {
  background: #FFFFFF;
  border-color: #0D9488;
  box-shadow: 0 0 0 4px rgba(45, 212, 191, 0.22);
  outline: none;
  color: #0F2F2E;
}

.cart-content-section .cart-form-input::placeholder,
.cart-content-section .cart-form-textarea::placeholder {
  color: #8CA6A2;
  opacity: 1;
}

.cart-content-section .cart-payment-check {
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(20, 184, 166, 0.22);
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.cart-content-section .cart-payment-check:hover {
  background: #FFFFFF;
  border-color: #0D9488;
}

.cart-content-section .cart-payment-check input:checked ~ label {
  color: #0F766E;
  font-weight: 700;
}

.cart-content-section .cart-submit-order-btn {
  background: linear-gradient(135deg, #0D9488 0%, #0284C7 100%);
  color: #FFFFFF;
  font-weight: 700;
  font-size: 1.05rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 8px 22px -4px rgba(13, 148, 136, 0.38);
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.cart-content-section .cart-submit-order-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -4px rgba(13, 148, 136, 0.5);
  color: #FFFFFF;
}

.cart-content-section .cart-primary-action-btn {
  background: linear-gradient(135deg, #0D9488 0%, #0284C7 100%);
  color: #FFFFFF;
  font-weight: 600;
  padding: 0.85rem 1.85rem;
  border-radius: 9999px;
  text-decoration: none;
  box-shadow: 0 8px 20px -4px rgba(13, 148, 136, 0.32);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cart-content-section .cart-primary-action-btn:hover {
  transform: translateY(-2px);
  color: #FFFFFF;
  box-shadow: 0 12px 26px -4px rgba(13, 148, 136, 0.45);
}

.cart-content-section .text-teal-900 {
  color: #0F2F2E !important;
}

.cart-content-section .text-teal-950 {
  color: #081C1B !important;
}

.cart-content-section .text-teal {
  color: #0D9488 !important;
}

.cart-content-section .text-teal-800 {
  color: #0F766E !important;
}

.cart-toast-notification {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  background: rgba(15, 47, 46, 0.95);
  backdrop-filter: blur(12px);
  color: #FFFFFF;
  padding: 0.95rem 1.5rem;
  border-radius: 9999px;
  border: 1px solid rgba(45, 212, 191, 0.4);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.25);
  font-weight: 600;
  font-size: 0.925rem;
  transform: translateY(0);
  transition: transform 0.3s ease, opacity 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

/* ===== PAGE: privacy ===== */
.privacy-policy-section { background: linear-gradient(135deg, #F0FDF4 0%, #ECFEFF 45%, #F0FDFA 100%); color: #0F2F2E; font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif; }
.privacy-policy-section .privacy-header-card { background: rgba(255, 255, 255, 0.75); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); border-radius: 1.5rem; border: 1px solid rgba(255, 255, 255, 0.85); box-shadow: 0 12px 36px -8px rgba(13, 148, 136, 0.08), 0 4px 16px -4px rgba(2, 132, 199, 0.05); }
.privacy-policy-section .privacy-badge { background-color: rgba(45, 212, 191, 0.18); color: #0F766E; font-family: 'Outfit', sans-serif; font-weight: 600; font-size: 0.85rem; padding: 0.5rem 1rem; border-radius: 9999px; border: 1px solid rgba(20, 184, 166, 0.3); letter-spacing: 0.02em; display: inline-block; }
.privacy-policy-section .privacy-main-title { font-family: 'Outfit', sans-serif; font-weight: 800; color: #0F2F2E; line-height: 1.2; letter-spacing: -0.02em; font-size: 2.25rem; }
@media (min-width: 768px) { .privacy-policy-section .privacy-main-title { font-size: 3rem; } }
.privacy-policy-section .privacy-lead-text { color: #3B615D; font-size: 1.1rem; line-height: 1.6; max-width: 720px; }
.privacy-policy-section .privacy-meta-info { font-size: 0.875rem; color: #5F8783; font-weight: 500; }
.privacy-policy-section .text-teal { color: #0D9488 !important; }
.privacy-policy-section .privacy-content-card { background: rgba(255, 255, 255, 0.82); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-radius: 1.5rem; border: 1px solid rgba(255, 255, 255, 0.9); box-shadow: 0 16px 40px -10px rgba(13, 148, 136, 0.1); }
.privacy-policy-section .privacy-nav-summary { background: rgba(240, 253, 250, 0.7); border: 1px solid rgba(20, 184, 166, 0.2); }
.privacy-policy-section .summary-title { font-family: 'Outfit', sans-serif; font-weight: 700; color: #0F2F2E; }
.privacy-policy-section .summary-link { color: #0F766E; text-decoration: none; font-weight: 600; font-size: 0.95rem; display: inline-flex; align-items: center; transition: transform 0.2s ease, color 0.2s ease; }
.privacy-policy-section .summary-link:hover { color: #0D9488; transform: translateX(4px); }
.privacy-policy-section .policy-block { position: relative; }
.privacy-policy-section .section-title { font-family: 'Outfit', sans-serif; font-weight: 700; color: #0F2F2E; font-size: 1.5rem; line-height: 1.3; margin-bottom: 1rem; display: flex; align-items: center; gap: 0.75rem; }
.privacy-policy-section .section-number { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 10px; background: linear-gradient(135deg, rgba(13, 148, 136, 0.15) 0%, rgba(2, 132, 199, 0.15) 100%); color: #0D9488; font-size: 0.95rem; font-weight: 700; border: 1px solid rgba(20, 184, 166, 0.3); flex-shrink: 0; }
.privacy-policy-section .section-text { color: #3B615D; font-size: 1rem; line-height: 1.65; margin-bottom: 1rem; }
.privacy-policy-section .policy-list { list-style: none; padding-left: 0; margin-bottom: 1.25rem; }
.privacy-policy-section .policy-list li { position: relative; padding-left: 1.5rem; margin-bottom: 0.75rem; color: #3B615D; line-height: 1.55; }
.privacy-policy-section .policy-list li::before { content: ""; position: absolute; left: 0; top: 0.55rem; width: 8px; height: 8px; border-radius: 50%; background-color: #0D9488; }
.privacy-policy-section .policy-list li strong { color: #0F2F2E; }
.privacy-policy-section .info-box { background: rgba(240, 253, 244, 0.85); border: 1px solid rgba(52, 211, 153, 0.3); }
.privacy-policy-section .info-box-title { font-family: 'Outfit', sans-serif; font-weight: 700; color: #0F2F2E; }
.privacy-policy-section .security-card { background: rgba(255, 255, 255, 0.9); border: 1px solid rgba(20, 184, 166, 0.2); box-shadow: 0 4px 12px rgba(13, 148, 136, 0.04); }
.privacy-policy-section .security-icon { font-size: 1.25rem; color: #0D9488; }
.privacy-policy-section .security-heading { font-family: 'Outfit', sans-serif; font-weight: 700; color: #0F2F2E; }
.privacy-policy-section .security-desc { color: #5F8783; line-height: 1.5; }
.privacy-policy-section .contact-box { background: linear-gradient(135deg, rgba(240, 253, 250, 0.9) 0%, rgba(236, 254, 255, 0.9) 100%); border: 1px solid rgba(20, 184, 166, 0.3); }
.privacy-policy-section .contact-box-title { font-family: 'Outfit', sans-serif; font-weight: 700; color: #0F2F2E; font-size: 1.15rem; }
.privacy-policy-section .contact-box-text { color: #3B615D; font-size: 0.95rem; line-height: 1.55; }
.privacy-policy-section .btn-policy-link { background: rgba(255, 255, 255, 0.85); color: #0F766E; border: 1px solid rgba(20, 184, 166, 0.3); border-radius: 9999px; padding: 0.5rem 1.15rem; font-weight: 600; font-size: 0.875rem; transition: all 0.25s ease; }
.privacy-policy-section .btn-policy-link:hover { background: #0D9488; color: #FFFFFF; border-color: #0D9488; transform: translateY(-2px); box-shadow: 0 4px 12px rgba(13, 148, 136, 0.2); }
@media (max-width: 767.98px) { .privacy-policy-section .privacy-main-title { font-size: 1.125rem !important; hyphens: auto; } .privacy-policy-section .section-title { font-size: 1rem !important; hyphens: auto; } .privacy-policy-section .summary-title, .privacy-policy-section .info-box-title, .privacy-policy-section .security-heading, .privacy-policy-section .contact-box-title { font-size: 0.875rem !important; hyphens: auto; } .privacy-policy-section .privacy-content-card, .privacy-policy-section .privacy-header-card { padding: 1.25rem !important; } }

/* ===== PAGE: terms ===== */
.gh-terms-page {
  background: linear-gradient(135deg, #F0FDF4 0%, #ECFEFF 45%, #F0FDFA 100%);
  min-height: 80vh;
  color: #0F2F2E;
}

.gh-terms-page .gh-terms-badge {
  background: rgba(45, 212, 191, 0.18);
  color: #0F766E;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.4rem 1rem;
  border-radius: 9999px;
  border: 1px solid rgba(20, 184, 166, 0.3);
  letter-spacing: 0.03em;
}

.gh-terms-page .gh-terms-main-title {
  font-family: 'Outfit', 'Plus Jakarta Sans', sans-serif;
  font-size: 2.75rem;
  font-weight: 800;
  color: #0F2F2E;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.gh-terms-page .gh-terms-effective-date {
  color: #5F8783;
  font-size: 0.95rem;
  font-weight: 500;
}

.gh-terms-page .gh-terms-summary-card {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(20, 184, 166, 0.28);
  box-shadow: 0 12px 36px -8px rgba(13, 148, 136, 0.08);
}

.gh-terms-page .gh-summary-icon-box {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #0D9488 0%, #0284C7 100%);
  color: #FFFFFF;
  font-size: 1.5rem;
}

.gh-terms-page .gh-summary-title {
  font-family: 'Outfit', sans-serif;
  color: #0F2F2E;
  font-weight: 700;
}

.gh-terms-page .gh-summary-text {
  color: #3B615D;
  font-size: 1rem;
  line-height: 1.6;
}

.gh-terms-page .gh-terms-content-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 40px -10px rgba(13, 148, 136, 0.1);
}

.gh-terms-page .gh-section-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: rgba(13, 148, 136, 0.12);
  color: #0D9488;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  border-radius: 8px;
}

.gh-terms-page .gh-section-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: #0F2F2E;
}

.gh-terms-page .gh-terms-text {
  color: #3B615D;
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 0.85rem;
}

.gh-terms-page .gh-terms-list {
  margin: 0.85rem 0 1.25rem 1.25rem;
  color: #3B615D;
  line-height: 1.6;
}

.gh-terms-page .gh-terms-list li {
  margin-bottom: 0.5rem;
}

.gh-terms-page .gh-contact-highlight {
  background: rgba(240, 253, 250, 0.9);
  border: 1px solid rgba(45, 212, 191, 0.35);
}

.gh-terms-page .text-teal {
  color: #0D9488;
}

.gh-terms-page .text-teal-dark {
  color: #0F2F2E;
}

@media (max-width: 767.98px) {
  .gh-terms-page .gh-terms-main-title {
    font-size: 1.85rem;
    hyphens: auto;
  }
  .gh-terms-page .gh-section-title {
    font-size: 1.2rem;
    hyphens: auto;
  }
  .gh-terms-page .gh-summary-title {
    font-size: 1.15rem;
  }
  .gh-terms-page .gh-terms-content-card {
    padding: 1.5rem !important;
  }
}

/* ===== PAGE: disclaimer ===== */
.disclaimer-section{background:linear-gradient(135deg,#F0FDF4 0%,#ECFEFF 45%,#F0FDFA 100%);min-height:80vh;position:relative}.disclaimer-section .disclaimer-card{background:rgba(255,255,255,0.85);backdrop-filter:blur(20px);-webkit-backdrop-filter:blur(20px);border:1px solid rgba(255,255,255,0.95);border-radius:1.5rem;box-shadow:0 16px 40px -10px rgba(13,148,136,0.1),0 4px 16px -4px rgba(2,132,199,0.06)}.disclaimer-section .disclaimer-badge{background:rgba(45,212,191,0.18);color:#0F766E;border:1px solid rgba(20,184,166,0.3);padding:0.4rem 1.1rem;border-radius:9999px;font-size:0.875rem;font-weight:600;letter-spacing:0.02em}.disclaimer-section .disclaimer-title{font-family:'Outfit','Plus Jakarta Sans',sans-serif;font-size:2.25rem;font-weight:800;color:#0F2F2E;line-height:1.2;margin-bottom:0.75rem}.disclaimer-section .disclaimer-meta{font-size:0.875rem;color:#5F8783;font-weight:500}.disclaimer-section .disclaimer-notice-box{background:rgba(254,243,199,0.55);border:1px solid rgba(245,158,11,0.35);border-radius:1rem;color:#92400E}.disclaimer-section .disclaimer-notice-icon{font-size:1.75rem;color:#D97706;line-height:1.2}.disclaimer-section .disclaimer-notice-title{color:#78350F;font-weight:700}.disclaimer-section .disclaimer-notice-text{font-size:0.925rem;line-height:1.6;color:#92400E}.disclaimer-section .disclaimer-heading{font-family:'Outfit','Plus Jakarta Sans',sans-serif;font-size:1.35rem;font-weight:700;color:#0F2F2E;margin-bottom:0.75rem;display:flex;align-items:center}.disclaimer-section .text-primary-brand{color:#0D9488}.disclaimer-section .disclaimer-text{font-size:0.975rem;line-height:1.7;color:#3B615D;margin-bottom:0.75rem}.disclaimer-section .disclaimer-list{list-style-type:none;padding-left:0;margin-bottom:0.75rem}.disclaimer-section .disclaimer-list li{position:relative;padding-left:1.75rem;margin-bottom:0.65rem;font-size:0.95rem;line-height:1.6;color:#3B615D}.disclaimer-section .disclaimer-list li::before{content:'\ea5e';font-family:'remixicon';position:absolute;left:0;top:0;color:#0D9488;font-size:1.1rem;font-weight:600}.disclaimer-section .disclaimer-link-card{background:rgba(255,255,255,0.75);border:1px solid rgba(20,184,166,0.22);border-radius:1rem;text-decoration:none;transition:all 0.3s cubic-bezier(0.16,1,0.3,1);height:100%}.disclaimer-section .disclaimer-link-card:hover{background:rgba(255,255,255,0.98);transform:translateY(-3px);border-color:rgba(13,148,136,0.45);box-shadow:0 10px 24px -6px rgba(13,148,136,0.15)}.disclaimer-section .disclaimer-link-icon{font-size:1.6rem;color:#0D9488;background:rgba(45,212,191,0.15);width:42px;height:42px;display:flex;align-items:center;justify-content:center;border-radius:0.75rem;flex-shrink:0}.disclaimer-section .disclaimer-link-title{font-size:0.95rem;font-weight:700;color:#0F2F2E;line-height:1.3}.disclaimer-section .disclaimer-link-sub{font-size:0.8rem;color:#5F8783;line-height:1.3}.disclaimer-section .disclaimer-contact-callout{background:rgba(240,253,250,0.85);border:1px solid rgba(20,184,166,0.25);border-radius:1rem}.disclaimer-section .disclaimer-contact-title{color:#0F2F2E;font-weight:700}.disclaimer-section .disclaimer-contact-text{color:#3B615D;font-size:0.95rem;line-height:1.6}.disclaimer-section .disclaimer-inline-link{color:#0D9488;font-weight:600;text-decoration:underline;text-underline-offset:3px;transition:color 0.2s ease}.disclaimer-section .disclaimer-inline-link:hover{color:#0369A1}@media(max-width:767.98px){.disclaimer-section .disclaimer-title{font-size:1.65rem;hyphens:auto}.disclaimer-section .disclaimer-heading{font-size:1.15rem}.disclaimer-section .disclaimer-notice-title{font-size:1rem}.disclaimer-section .disclaimer-contact-title{font-size:1rem}.disclaimer-section .disclaimer-card{border-radius:1rem}}

/* ===== PAGE: refound ===== */
.gh-refund-section {
  background: linear-gradient(135deg, #F0FDF4 0%, #ECFEFF 45%, #F0FDFA 100%);
  min-height: 70vh;
  color: #0F2F2E;
}

.gh-refund-section .gh-refund-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 1.5rem;
  box-shadow: 0 12px 36px -8px rgba(13, 148, 136, 0.08), 0 4px 16px -4px rgba(2, 132, 199, 0.05);
}

.gh-refund-section .gh-badge {
  background: rgba(45, 212, 191, 0.18);
  color: #0F766E;
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.35rem 0.85rem;
  border-radius: 9999px;
  border: 1px solid rgba(20, 184, 166, 0.3);
  letter-spacing: 0.02em;
}

.gh-refund-section .gh-main-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 2.25rem;
  color: #0F2F2E;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.gh-refund-section .gh-lead-text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #3B615D;
}

.gh-refund-section .gh-divider {
  border: 0;
  height: 1px;
  background: rgba(13, 148, 136, 0.15);
}

.gh-refund-section .gh-section-heading {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.35rem;
  color: #0F2F2E;
  display: flex;
  align-items: center;
  letter-spacing: -0.01em;
}

.gh-refund-section .gh-section-heading i {
  color: #0D9488 !important;
  font-size: 1.35rem;
}

.gh-refund-section p {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.975rem;
  line-height: 1.65;
  color: #3B615D;
}

.gh-refund-section strong {
  color: #0F2F2E;
  font-weight: 600;
}

.gh-refund-section .gh-feature-list {
  list-style: none;
  padding-left: 0;
}

.gh-refund-section .gh-feature-list li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  color: #3B615D;
  line-height: 1.55;
}

.gh-refund-section .gh-feature-list li::before {
  content: "\ea5e";
  font-family: 'remixicon';
  position: absolute;
  left: 0;
  top: 0.1rem;
  color: #0D9488;
  font-size: 1.1rem;
  font-weight: 700;
}

.gh-refund-section .gh-step-card {
  background: rgba(240, 253, 250, 0.7);
  border: 1px solid rgba(20, 184, 166, 0.2);
  border-radius: 1rem;
  transition: all 0.3s ease;
}

.gh-refund-section .gh-step-card:hover {
  background: rgba(255, 255, 255, 0.95);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px -4px rgba(13, 148, 136, 0.12);
}

.gh-refund-section .gh-step-number {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: #0D9488;
  line-height: 1;
}

.gh-refund-section .gh-step-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: #0F2F2E;
}

.gh-refund-section .gh-step-desc {
  font-size: 0.875rem;
  line-height: 1.5;
  color: #5F8783;
}

.gh-refund-section .gh-inline-link {
  color: #0D9488;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}

.gh-refund-section .gh-inline-link:hover {
  color: #0284C7;
}

.gh-refund-section .gh-highlight-box {
  background: linear-gradient(135deg, rgba(240, 253, 250, 0.9) 0%, rgba(236, 254, 255, 0.75) 100%);
  border: 1px solid rgba(20, 184, 166, 0.3);
}

.gh-refund-section .gh-highlight-icon {
  font-size: 2rem;
  color: #0D9488;
  line-height: 1;
  flex-shrink: 0;
}

.gh-refund-section .gh-highlight-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: #0F2F2E;
}

.gh-refund-section .gh-highlight-desc {
  font-size: 0.925rem;
  line-height: 1.55;
  color: #3B615D;
}

@media (max-width: 767.98px) {
  .gh-refund-section .gh-main-title {
    font-size: 1.125rem;
    hyphens: auto;
  }
  .gh-refund-section .gh-section-heading {
    font-size: 1rem;
    hyphens: auto;
  }
  .gh-refund-section .gh-step-title,
  .gh-refund-section .gh-highlight-title {
    font-size: 0.875rem;
    hyphens: auto;
  }
  .gh-refund-section .gh-refund-card {
    padding: 1.25rem !important;
    border-radius: 1rem;
  }
}

/* ===== PAGE: delivery ===== */
.delivery-content-section {
  background: linear-gradient(135deg, #F0FDF4 0%, #ECFEFF 45%, #F0FDFA 100%);
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #0F2F2E;
}

.delivery-content-section .delivery-badge {
  background: rgba(45, 212, 191, 0.15);
  border: 1px solid rgba(20, 184, 166, 0.28);
  color: #0F766E;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.02em;
}

.delivery-content-section .delivery-main-heading {
  font-family: 'Outfit', 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 2.5rem;
  line-height: 1.2;
  color: #0F2F2E;
  letter-spacing: -0.02em;
}

.delivery-content-section .delivery-main-subtitle {
  font-size: 1.125rem;
  line-height: 1.6;
  color: #3B615D;
  max-width: 720px;
}

.delivery-content-section .delivery-section-icon {
  font-size: 1.75rem;
  color: #0D9488;
}

.delivery-content-section .delivery-section-title {
  font-family: 'Outfit', 'Plus Jakarta Sans', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #0F2F2E;
  letter-spacing: -0.015em;
}

.delivery-content-section .delivery-card {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow: 0 12px 36px -8px rgba(13, 148, 136, 0.08), 0 4px 16px -4px rgba(2, 132, 199, 0.05);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.delivery-content-section .delivery-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 48px -10px rgba(13, 148, 136, 0.18), 0 8px 24px -6px rgba(2, 132, 199, 0.1);
}

.delivery-content-section .delivery-card.active-tier {
  border: 1px solid rgba(20, 184, 166, 0.45);
  background: rgba(255, 255, 255, 0.92);
}

.delivery-content-section .delivery-icon-box {
  width: 52px;
  height: 52px;
  background: rgba(45, 212, 191, 0.15);
  border: 1px solid rgba(20, 184, 166, 0.25);
}

.delivery-content-section .delivery-tag {
  font-size: 0.75rem;
  font-weight: 600;
  background: rgba(13, 148, 136, 0.1);
  color: #0F766E;
}

.delivery-content-section .delivery-tag-accent {
  font-size: 0.75rem;
  font-weight: 600;
  background: linear-gradient(135deg, #0D9488 0%, #0284C7 100%);
  color: #FFFFFF;
}

.delivery-content-section .delivery-card-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: #0F2F2E;
}

.delivery-content-section .delivery-card-text {
  font-size: 0.95rem;
  line-height: 1.55;
}

.delivery-content-section .delivery-stat-label {
  font-size: 0.85rem;
  color: #5F8783;
}

.delivery-content-section .delivery-stat-val {
  font-size: 0.95rem;
  color: #0F2F2E;
}

.delivery-content-section .text-teal {
  color: #0D9488 !important;
}

.delivery-content-section .delivery-process-banner {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(20, 184, 166, 0.2);
  box-shadow: 0 12px 36px -8px rgba(13, 148, 136, 0.08);
}

.delivery-content-section .delivery-process-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #0F2F2E;
  line-height: 1.25;
}

.delivery-content-section .delivery-process-text {
  color: #3B615D;
  font-size: 0.975rem;
  line-height: 1.6;
}

.delivery-content-section .delivery-step-item {
  background: rgba(240, 253, 250, 0.7);
  border: 1px solid rgba(20, 184, 166, 0.15);
}

.delivery-content-section .delivery-step-number {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: #0D9488;
}

.delivery-content-section .delivery-step-heading {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #0F2F2E;
}

.delivery-content-section .delivery-step-subtext {
  font-size: 0.8rem;
  color: #5F8783;
  line-height: 1.4;
}

.delivery-content-section .payment-card,
.delivery-content-section .delivery-info-box {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow: 0 12px 36px -8px rgba(13, 148, 136, 0.08);
  transition: transform 0.25s ease;
}

.delivery-content-section .payment-card:hover,
.delivery-content-section .delivery-info-box:hover {
  transform: translateY(-3px);
}

.delivery-content-section .payment-icon-wrapper {
  width: 48px;
  height: 48px;
  background: rgba(45, 212, 191, 0.15);
  border: 1px solid rgba(20, 184, 166, 0.2);
}

.delivery-content-section .payment-card-title,
.delivery-content-section .delivery-info-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #0F2F2E;
}

.delivery-content-section .payment-card-desc,
.delivery-content-section .delivery-info-desc {
  font-size: 0.9rem;
  line-height: 1.55;
}

.delivery-content-section .badge-pill-item {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.65rem;
  border-radius: 9999px;
  background: rgba(13, 148, 136, 0.08);
  color: #0F766E;
  border: 1px solid rgba(20, 184, 166, 0.18);
}

.delivery-content-section .delivery-primary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0D9488 0%, #0284C7 100%);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 9999px;
  padding: 0.75rem 1.65rem;
  font-weight: 600;
  font-size: 0.925rem;
  box-shadow: 0 8px 20px -4px rgba(13, 148, 136, 0.32);
  transition: all 0.25s ease;
}

.delivery-content-section .delivery-primary-btn:hover {
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 12px 26px -4px rgba(13, 148, 136, 0.45);
}

.delivery-content-section .delivery-secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.85);
  color: #0F766E;
  border: 1px solid rgba(20, 184, 166, 0.35);
  border-radius: 9999px;
  padding: 0.75rem 1.65rem;
  font-weight: 600;
  font-size: 0.925rem;
  transition: all 0.25s ease;
}

.delivery-content-section .delivery-secondary-btn:hover {
  background: #FFFFFF;
  color: #0D9488;
  transform: translateY(-2px);
}

.delivery-content-section .delivery-faq-card {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(20, 184, 166, 0.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 8px 24px -6px rgba(13, 148, 136, 0.06);
  transition: border-color 0.25s ease;
}

.delivery-content-section .delivery-faq-question {
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: #0F2F2E;
  cursor: pointer;
}

.delivery-content-section .faq-arrow-icon {
  color: #0D9488;
  transition: transform 0.3s ease;
}

.delivery-content-section .js-faq-item.active .faq-arrow-icon {
  transform: rotate(180deg);
}

.delivery-content-section .delivery-faq-answer {
  display: none;
  font-size: 0.95rem;
  line-height: 1.6;
  border-top: 1px dashed rgba(20, 184, 166, 0.2);
  margin-top: 0.75rem;
}

.delivery-content-section .js-faq-item.active .delivery-faq-answer {
  display: block;
}

@media (max-width: 767.98px) {
  .delivery-content-section .delivery-main-heading {
    font-size: 1.125rem;
    hyphens: auto;
  }
  .delivery-content-section .delivery-section-title {
    font-size: 1rem;
    hyphens: auto;
  }
  .delivery-content-section .delivery-card-title,
  .delivery-content-section .delivery-process-title,
  .delivery-content-section .payment-card-title,
  .delivery-content-section .delivery-info-title {
    font-size: 0.875rem;
    hyphens: auto;
  }
  .delivery-content-section .delivery-main-subtitle {
    font-size: 0.95rem;
  }
  .delivery-content-section .delivery-primary-btn,
  .delivery-content-section .delivery-secondary-btn {
    width: 100%;
  }
}

.comment-glass-card {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.85);
    box-shadow: 0 12px 36px -8px rgba(13, 148, 136, 0.08), 0 4px 16px -4px rgba(2, 132, 199, 0.05);
    transition: all 0.3s ease-in-out;
}

.comment-glass-card:hover {
    box-shadow: 0 22px 48px -10px rgba(13, 148, 136, 0.14), 0 8px 24px -6px rgba(2, 132, 199, 0.08);
    border-color: rgba(20, 184, 166, 0.35);
}

.comment-avatar-wrapper {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
}

.comment-avatar {
    width: 52px;
    height: 52px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid #FFFFFF;
    box-shadow: 0 4px 10px rgba(13, 148, 136, 0.15);
}

.comment-avatar-badge {
    position: absolute;
    bottom: -2px;
    right: -2px;
    background: #FFFFFF;
    color: #0D9488;
    border-radius: 50%;
    font-size: 0.95rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.comment-author-name {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: #0F2F2E;
    font-size: 1.05rem;
    letter-spacing: -0.01em;
}

.comment-verified-pill {
    background: rgba(45, 212, 191, 0.15);
    color: #0F766E;
    border: 1px solid rgba(20, 184, 166, 0.28);
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.65rem;
}

.comment-meta-info {
    font-size: 0.8125rem;
    color: #5F8783;
}

.comment-meta-dot {
    color: #2DD4BF;
}

.comment-rating-box {
    background: rgba(255, 255, 255, 0.85);
    padding: 0.35rem 0.75rem;
    border-radius: 9999px;
    border: 1px solid rgba(20, 184, 166, 0.15);
    color: #F59E0B;
}

.comment-rating-score {
    color: #0F2F2E;
    font-size: 0.875rem;
}

.comment-headline {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    color: #0F2F2E;
    font-size: 1.1rem;
}

.comment-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #3B615D;
}

.comment-photos-grid {
    overflow-x: auto;
    padding-bottom: 0.25rem;
}

.comment-photo-thumb {
    width: 72px;
    height: 72px;
    border-radius: 0.75rem;
    overflow: hidden;
    border: 1px solid rgba(20, 184, 166, 0.25);
    flex-shrink: 0;
    cursor: pointer;
    transition: transform 0.25s ease;
}

.comment-photo-thumb:hover {
    transform: scale(1.05);
}

.comment-attached-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.comment-footer-bar {
    border-color: rgba(13, 148, 136, 0.12) !important;
}

.comment-action-btn {
    background: rgba(255, 255, 255, 0.7);
    color: #0F766E;
    border: 1px solid rgba(20, 184, 166, 0.25);
    border-radius: 9999px;
    font-size: 0.8125rem;
    font-weight: 600;
    padding: 0.35rem 0.9rem;
    backdrop-filter: blur(8px);
    transition: all 0.25s ease;
}

.comment-action-btn:hover {
    background: #0D9488;
    color: #FFFFFF;
    border-color: #0D9488;
    transform: translateY(-1px);
}

.comment-counter-badge {
    background: rgba(13, 148, 136, 0.1);
    color: #0D9488;
    padding: 0.1rem 0.45rem;
    border-radius: 9999px;
    font-size: 0.75rem;
}

.comment-action-btn:hover .comment-counter-badge {
    background: rgba(255, 255, 255, 0.25);
    color: #FFFFFF;
}

.comment-action-btn.active .comment-counter-badge {
    background: rgba(255, 255, 255, 0.3);
    color: #FFFFFF;
}

.comment-action-icon-btn {
    width: 34px;
    height: 34px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.7);
    color: #5F8783;
    border: 1px solid rgba(20, 184, 166, 0.2);
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

.comment-action-icon-btn:hover {
    background: rgba(255, 255, 255, 0.95);
    color: #0D9488;
    border-color: #2DD4BF;
}

.reply-glass-card {
    background: rgba(240, 253, 250, 0.75);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-radius: 1rem;
    border: 1px solid rgba(45, 212, 191, 0.35);
    box-shadow: 0 8px 24px -6px rgba(13, 148, 136, 0.06);
}

.reply-connector-indicator {
    position: absolute;
    top: -16px;
    left: 20px;
    width: 14px;
    height: 16px;
    border-left: 2px solid rgba(45, 212, 191, 0.6);
    border-bottom: 2px solid rgba(45, 212, 191, 0.6);
    border-bottom-left-radius: 6px;
}

.reply-avatar-wrapper {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
}

.reply-avatar {
    width: 42px;
    height: 42px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid #FFFFFF;
    box-shadow: 0 3px 8px rgba(13, 148, 136, 0.12);
}

.reply-brand-dot {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 12px;
    height: 12px;
    background: #0D9488;
    border: 2px solid #FFFFFF;
    border-radius: 50%;
}

.reply-author-name {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: #0F2F2E;
    font-size: 0.95rem;
}

.reply-official-pill {
    background: linear-gradient(135deg, #0D9488 0%, #0284C7 100%);
    color: #FFFFFF;
    border-radius: 9999px;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.2rem 0.55rem;
    box-shadow: 0 2px 6px rgba(13, 148, 136, 0.2);
}

.reply-meta-info {
    font-size: 0.775rem;
    color: #5F8783;
}

.reply-meta-dot {
    color: #2DD4BF;
}

.reply-helpful-tag {
    font-size: 0.775rem;
    font-weight: 600;
    color: #0D9488;
    background: rgba(255, 255, 255, 0.8);
    padding: 0.25rem 0.65rem;
    border-radius: 9999px;
    border: 1px solid rgba(20, 184, 166, 0.2);
}

.reply-text {
    font-size: 0.9rem;
    line-height: 1.55;
    color: #3B615D;
}

.reply-footer-bar {
    border-top: 1px dashed rgba(13, 148, 136, 0.15);
}

.reply-action-btn {
    background: rgba(255, 255, 255, 0.8);
    color: #0F766E;
    border: 1px solid rgba(20, 184, 166, 0.22);
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    transition: all 0.2s ease;
}

.reply-action-btn:hover {
    background: #0D9488;
    color: #FFFFFF;
    border-color: #0D9488;
}

.reply-action-link {
    background: transparent;
    border: none;
    color: #5F8783;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    transition: color 0.2s ease;
}

.reply-action-link:hover {
    color: #0D9488;
}


/* ===== PAGE TEMPLATE: catalog-items ===== */
.gh-body {
    background: linear-gradient(135deg, #F0FDF4 0%, #ECFEFF 45%, #F0FDFA 100%);
    color: #0F2F2E;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    min-height: 100vh;
}

.site-header {
    background-color: #F0FDF4;
    border-bottom: 1px solid rgba(13, 148, 136, 0.18);
    box-shadow: 0 4px 20px rgba(13, 148, 136, 0.06);
    z-index: 1030;
    padding: 0.5rem 0;
}

.site-header .brand-logo-img {
    width: 44px;
    height: 44px;
    max-width: 44px;
    max-height: 44px;
    object-fit: contain;
}

.site-header .brand-title {
    color: #0F2F2E;
    font-family: 'Outfit', 'Plus Jakarta Sans', sans-serif;
    letter-spacing: -0.02em;
}

.site-header .custom-nav-link {
    color: #3B615D;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.5rem 0.85rem;
    border-radius: 9999px;
    transition: all 0.25s ease-in-out;
}

.site-header .custom-nav-link:hover,
.site-header .custom-nav-link:focus {
    color: #0D9488;
    background-color: rgba(45, 212, 191, 0.12);
}

.site-header .custom-nav-link.active {
    color: #0F766E;
    background-color: rgba(45, 212, 191, 0.2);
}

.site-header .btn-shop-explore {
    background: linear-gradient(135deg, #0D9488 0%, #0284C7 100%);
    color: #FFFFFF;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.55rem 1.25rem;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 14px rgba(13, 148, 136, 0.25);
    transition: all 0.25s ease-in-out;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.site-header .btn-shop-explore:hover,
.site-header .btn-shop-explore:focus {
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(13, 148, 136, 0.35);
}

.site-header .cart-icon-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: #FFFFFF;
    color: #0F2F2E;
    border: 1px solid rgba(13, 148, 136, 0.2);
    box-shadow: 0 4px 12px rgba(13, 148, 136, 0.08);
    transition: all 0.25s ease-in-out;
    text-decoration: none;
}

.site-header .cart-icon-btn:hover,
.site-header .cart-icon-btn:focus {
    background-color: #0D9488;
    color: #FFFFFF;
    border-color: #0D9488;
    transform: scale(1.05);
}

.site-header .bg-teal {
    background-color: #0D9488 !important;
    color: #FFFFFF !important;
    position: absolute;
    top: -2px;
    right: -2px;
    font-size: 0.7rem;
    padding: 0.25em 0.5em;
    border: 2px solid #FFFFFF;
}

.site-header .custom-toggler {
    width: 44px;
    height: 44px;
    padding: 0;
    border-radius: 0.75rem;
    background-color: #FFFFFF;
    border: 1px solid rgba(13, 148, 136, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0F2F2E;
}

.site-header .custom-toggler:focus {
    box-shadow: 0 0 0 3px rgba(45, 212, 191, 0.35);
    outline: none;
}

.site-header .toggler-icon {
    font-size: 1.4rem;
    color: #0F2F2E;
}

.product-detail-page {
    min-height: calc(100vh - 120px);
}

.gh-breadcrumb {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(12px);
    padding: 0.65rem 1.25rem;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
}

.gh-breadcrumb-link {
    color: #0F766E;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.gh-breadcrumb-link:hover {
    color: #0D9488;
}

.gh-breadcrumb .breadcrumb-item.active {
    color: #3B615D;
}

.product-main-card,
.product-info-tabs-card,
.product-reviews-card {
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-radius: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 12px 36px -8px rgba(13, 148, 136, 0.1);
}

.product-single-image-card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(20, 184, 166, 0.2);
    border-radius: 1.25rem;
    padding: 1.5rem;
    box-shadow: 0 8px 24px -6px rgba(13, 148, 136, 0.08);
}

.product-detail-featured-img {
    max-height: 480px;
    width: 100%;
    object-fit: cover;
    border-radius: 1rem;
}

.gh-stock-badge {
    background: rgba(16, 185, 129, 0.15);
    color: #047857;
    border: 1px solid rgba(16, 185, 129, 0.3);
    font-weight: 600;
    font-size: 0.8rem;
    padding: 0.4rem 0.75rem;
    border-radius: 9999px;
}

.gh-category-badge {
    background: rgba(45, 212, 191, 0.18);
    color: #0F766E;
    border: 1px solid rgba(20, 184, 166, 0.3);
    font-weight: 600;
    font-size: 0.8rem;
    padding: 0.4rem 0.75rem;
    border-radius: 9999px;
}

.product-title-heading {
    font-family: 'Outfit', 'Plus Jakarta Sans', sans-serif;
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.2;
    color: #0F2F2E;
}

.product-price-tag .gh-price-value {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #0D9488;
}

.product-price-tag .gh-price-tax {
    font-size: 0.85rem;
    color: #5F8783;
    margin-left: 0.5rem;
}

.product-description-text {
    font-size: 1rem;
    line-height: 1.65;
    color: #3B615D;
}

.product-specs-list .spec-item {
    border-color: rgba(13, 148, 136, 0.12) !important;
    font-size: 0.925rem;
}

.product-specs-list .spec-label {
    color: #3B615D;
}

.product-specs-list .spec-value {
    color: #0F2F2E;
}

.hero-btn-primary {
    background: linear-gradient(135deg, #0D9488 0%, #0284C7 100%);
    color: #FFFFFF;
    border-radius: 9999px;
    padding: 0.85rem 1.85rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 20px -4px rgba(13, 148, 136, 0.32);
    transition: all 0.25s ease-in-out;
    text-decoration: none;
}

.hero-btn-primary:hover,
.hero-btn-primary:focus {
    transform: translateY(-2px);
    box-shadow: 0 12px 26px -4px rgba(13, 148, 136, 0.45);
    color: #FFFFFF;
}

.product-perk-pill {
    background: rgba(240, 253, 250, 0.85);
    border: 1px solid rgba(20, 184, 166, 0.25);
    border-radius: 0.875rem;
}

.product-perk-pill .perk-icon {
    color: #0D9488;
    font-size: 1.25rem;
}

.product-perk-pill .perk-text {
    font-size: 0.775rem;
    font-weight: 600;
    color: #0F766E;
}

.custom-tabs {
    gap: 0.5rem;
    border-bottom: 1px solid rgba(13, 148, 136, 0.15);
    padding-bottom: 0.75rem;
}

.custom-tabs .nav-link {
    color: #3B615D;
    font-weight: 600;
    border-radius: 9999px;
    padding: 0.6rem 1.25rem;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(20, 184, 166, 0.2);
    transition: all 0.2s ease;
}

.custom-tabs .nav-link:hover {
    background: rgba(255, 255, 255, 0.9);
    color: #0D9488;
}

.custom-tabs .nav-link.active {
    background: linear-gradient(135deg, #0D9488 0%, #0284C7 100%);
    color: #FFFFFF;
    border-color: transparent;
}

.tab-content-heading {
    font-family: 'Outfit', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: #0F2F2E;
}

.tab-content-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #3B615D;
}

.spec-feature-box {
    background: rgba(240, 253, 250, 0.85);
    border: 1px solid rgba(20, 184, 166, 0.2);
    border-radius: 1rem;
}

.spec-box-title {
    font-size: 1rem;
    font-weight: 700;
    color: #0F2F2E;
}

.spec-box-desc {
    font-size: 0.875rem;
    color: #3B615D;
    line-height: 1.5;
}

.care-guidelines-list li {
    font-size: 0.925rem;
    color: #3B615D;
}

.text-teal {
    color: #0D9488 !important;
}

.text-dark-teal {
    color: #0F2F2E !important;
}

.text-muted-teal {
    color: #3B615D !important;
}

.reviews-section-heading {
    font-family: 'Outfit', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #0F2F2E;
}

.reviews-section-subtitle {
    font-size: 0.9rem;
    color: #3B615D;
}

.review-overall-rating {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(20, 184, 166, 0.25);
    border-radius: 9999px;
}

.comment-glass-card {
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(20, 184, 166, 0.25);
    border-radius: 1.25rem;
    box-shadow: 0 6px 20px -4px rgba(13, 148, 136, 0.08);
}

.comment-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #0D9488;
}

.comment-avatar-badge {
    position: absolute;
    bottom: -2px;
    right: -2px;
    color: #059669;
    background: #FFFFFF;
    border-radius: 50%;
    line-height: 1;
    font-size: 0.9rem;
}

.comment-author-name {
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #0F2F2E;
}

.comment-verified-pill {
    background: rgba(5, 150, 105, 0.15);
    color: #047857;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 9999px;
    padding: 0.25rem 0.55rem;
}

.comment-meta-info {
    font-size: 0.8rem;
    color: #5F8783;
}

.comment-rating-score {
    color: #0F2F2E;
    font-size: 0.9rem;
}

.comment-headline {
    font-size: 1rem;
    font-weight: 700;
    color: #0F2F2E;
}

.comment-text {
    font-size: 0.925rem;
    line-height: 1.6;
    color: #3B615D;
}

.comment-action-btn {
    background: rgba(240, 253, 250, 0.9);
    border: 1px solid rgba(20, 184, 166, 0.25);
    color: #0F766E;
    font-size: 0.825rem;
    font-weight: 600;
    border-radius: 9999px;
    padding: 0.35rem 0.85rem;
    transition: all 0.2s ease;
}

.comment-action-btn:hover,
.comment-action-btn.active {
    background: #0D9488;
    color: #FFFFFF;
}

.reply-glass-card {
    background: rgba(240, 253, 250, 0.95);
    border: 1px solid rgba(20, 184, 166, 0.3);
    border-radius: 1.25rem;
}

.reply-connector-indicator {
    position: absolute;
    left: -18px;
    top: 24px;
    width: 14px;
    height: 2px;
    background: rgba(20, 184, 166, 0.4);
}

.reply-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #0284C7;
}

.reply-brand-dot {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 10px;
    height: 10px;
    background: #0D9488;
    border-radius: 50%;
    border: 2px solid #FFFFFF;
}

.reply-author-name {
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: #0F2F2E;
}

.reply-official-pill {
    background: rgba(2, 132, 199, 0.15);
    color: #0369A1;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 9999px;
    padding: 0.25rem 0.55rem;
}

.reply-meta-info {
    font-size: 0.8rem;
    color: #5F8783;
}

.reply-helpful-tag {
    font-size: 0.8rem;
    font-weight: 600;
    color: #0F766E;
}

.reply-text {
    font-size: 0.9rem;
    line-height: 1.55;
    color: #3B615D;
}

.reply-action-btn {
    background: #FFFFFF;
    border: 1px solid rgba(20, 184, 166, 0.25);
    color: #0F766E;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 9999px;
    padding: 0.3rem 0.75rem;
    transition: all 0.2s ease;
}

.reply-action-btn:hover,
.reply-action-btn.active {
    background: #0D9488;
    color: #FFFFFF;
}

.gh-footer {
    background: linear-gradient(180deg, #F0FDF4 0%, #ECFEFF 50%, #E6FFFA 100%);
    padding: 3rem 0 2rem 0;
    position: relative;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    overflow: hidden;
}

.gh-footer__glass-card {
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 1.5rem;
    padding: 2.25rem 2rem 1.75rem 2rem;
    box-shadow: 0 12px 36px -8px rgba(13, 148, 136, 0.08), 0 4px 16px -4px rgba(2, 132, 199, 0.05);
}

.gh-footer__logo {
    max-width: 44px;
    max-height: 44px;
    object-fit: contain;
}

.gh-footer__brand-title {
    font-family: 'Outfit', 'Plus Jakarta Sans', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: #0F2F2E;
    letter-spacing: -0.02em;
}

.gh-footer__brand-desc {
    font-size: 0.925rem;
    line-height: 1.6;
    color: #3B615D;
    max-width: 320px;
}

.gh-footer__origin {
    padding: 0.4rem 0.85rem;
    background: rgba(45, 212, 191, 0.12);
    border: 1px solid rgba(20, 184, 166, 0.25);
    border-radius: 9999px;
}

.gh-footer__origin-icon {
    color: #0D9488;
    font-size: 1rem;
}

.gh-footer__origin-text {
    font-size: 0.825rem;
    font-weight: 600;
    color: #0F766E;
}

.gh-footer__heading {
    font-family: 'Outfit', 'Plus Jakarta Sans', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #0F2F2E;
    margin-bottom: 1.1rem;
    letter-spacing: -0.01em;
}

.gh-footer__links-list li {
    margin-bottom: 0.55rem;
}

.gh-footer__nav-link {
    font-size: 0.925rem;
    color: #3B615D;
    text-decoration: none;
    transition: all 0.25s ease-in-out;
    display: inline-block;
}

.gh-footer__nav-link:hover,
.gh-footer__nav-link:focus-visible {
    color: #0D9488;
    transform: translateX(3px);
}

.gh-footer__contact-item {
    color: #3B615D;
    transition: all 0.25s ease-in-out;
}

.gh-footer__icon-pill {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(20, 184, 166, 0.28);
    border-radius: 50%;
    color: #0D9488;
    font-size: 1rem;
    flex-shrink: 0;
    transition: all 0.25s ease-in-out;
}

.gh-footer__contact-val {
    font-size: 0.9rem;
    font-weight: 500;
    word-break: break-word;
}

.gh-footer__contact-item:hover .gh-footer__icon-pill,
.gh-footer__contact-item:focus-visible .gh-footer__icon-pill {
    background: #0D9488;
    color: #FFFFFF;
    transform: scale(1.08);
}

.gh-footer__contact-item:hover .gh-footer__contact-val,
.gh-footer__contact-item:focus-visible .gh-footer__contact-val {
    color: #0D9488;
}

.gh-footer__divider {
    height: 1px;
    background: linear-gradient(90deg, rgba(20, 184, 166, 0.05) 0%, rgba(20, 184, 166, 0.3) 50%, rgba(20, 184, 166, 0.05) 100%);
}

.gh-footer__copyright {
    font-size: 0.85rem;
    color: #5F8783;
}

.gh-footer__badge {
    font-size: 0.775rem;
    font-weight: 600;
    color: #0F766E;
    background: rgba(45, 212, 191, 0.15);
    border: 1px solid rgba(45, 212, 191, 0.3);
    padding: 0.3rem 0.75rem;
    border-radius: 9999px;
    display: inline-block;
}

@media (max-width: 767.98px) {
    .product-title-heading {
        font-size: 1.125rem;
        line-height: 1.25;
        hyphens: auto;
    }

    .product-price-tag .gh-price-value {
        font-size: 1.4rem;
    }

    .tab-content-heading {
        font-size: 1rem;
        hyphens: auto;
    }

    .reviews-section-heading {
        font-size: 1.05rem;
        hyphens: auto;
    }

    .product-main-card,
    .product-info-tabs-card,
    .product-reviews-card {
        padding: 1.25rem;
    }
}

/* ===== PAGE TEMPLATE: blog-items ===== */
.site-header {
    background-color: #F0FDF4;
    border-bottom: 1px solid rgba(13, 148, 136, 0.18);
    box-shadow: 0 4px 20px rgba(13, 148, 136, 0.06);
    z-index: 1030;
    padding: 0.5rem 0;
}

.site-header .brand-logo-img {
    width: 44px;
    height: 44px;
    max-width: 44px;
    max-height: 44px;
    object-fit: contain;
}

.site-header .brand-title {
    color: #0F2F2E;
    font-family: 'Outfit', 'Plus Jakarta Sans', sans-serif;
    letter-spacing: -0.02em;
}

.site-header .custom-nav-link {
    color: #3B615D;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.5rem 0.85rem;
    border-radius: 9999px;
    transition: all 0.25s ease-in-out;
}

.site-header .custom-nav-link:hover,
.site-header .custom-nav-link:focus {
    color: #0D9488;
    background-color: rgba(45, 212, 191, 0.12);
}

.site-header .custom-nav-link.active {
    color: #0F766E;
    background-color: rgba(45, 212, 191, 0.2);
}

.site-header .btn-shop-explore {
    background: linear-gradient(135deg, #0D9488 0%, #0284C7 100%);
    color: #FFFFFF;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.55rem 1.25rem;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 14px rgba(13, 148, 136, 0.25);
    transition: all 0.25s ease-in-out;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.site-header .btn-shop-explore:hover,
.site-header .btn-shop-explore:focus {
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(13, 148, 136, 0.35);
}

.site-header .cart-icon-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: #FFFFFF;
    color: #0F2F2E;
    border: 1px solid rgba(13, 148, 136, 0.2);
    box-shadow: 0 4px 12px rgba(13, 148, 136, 0.08);
    transition: all 0.25s ease-in-out;
    text-decoration: none;
}

.site-header .cart-icon-btn:hover,
.site-header .cart-icon-btn:focus {
    background-color: #0D9488;
    color: #FFFFFF;
    border-color: #0D9488;
    transform: scale(1.05);
}

.site-header .bg-teal {
    background-color: #0D9488 !important;
    color: #FFFFFF !important;
    position: absolute;
    top: -2px;
    right: -2px;
    font-size: 0.7rem;
    padding: 0.25em 0.5em;
    border: 2px solid #FFFFFF;
}

.site-header .custom-toggler {
    width: 44px;
    height: 44px;
    padding: 0;
    border-radius: 0.75rem;
    background-color: #FFFFFF;
    border: 1px solid rgba(13, 148, 136, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0F2F2E;
}

.site-header .custom-toggler:focus {
    box-shadow: 0 0 0 3px rgba(45, 212, 191, 0.35);
    outline: none;
}

.site-header .toggler-icon {
    font-size: 1.4rem;
    color: #0F2F2E;
}

@media (max-width: 991.98px) {
    .site-header .navbar-collapse {
        background-color: #FFFFFF;
        border-radius: 1rem;
        padding: 1.25rem 1rem;
        margin-top: 0.75rem;
        border: 1px solid rgba(13, 148, 136, 0.2);
        box-shadow: 0 12px 30px rgba(13, 148, 136, 0.12);
    }

    .site-header .custom-nav-link {
        padding: 0.65rem 1rem;
        font-size: 0.95rem;
    }
}

.blog-detail-page {
    background: linear-gradient(135deg, #F0FDF4 0%, #ECFEFF 45%, #F0FDFA 100%);
    min-height: 80vh;
    color: #0F2F2E;
}

.blog-detail-page .gh-breadcrumb {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    padding: 0.6rem 1.25rem;
    border-radius: 9999px;
    border: 1px solid rgba(20, 184, 166, 0.2);
    font-size: 0.875rem;
}

.blog-detail-page .gh-breadcrumb-link {
    color: #0D9488;
    text-decoration: none;
    font-weight: 500;
}

.blog-detail-page .gh-breadcrumb-link:hover {
    color: #0F766E;
    text-decoration: underline;
}

.blog-detail-page .blog-post-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.95);
    box-shadow: 0 12px 36px -8px rgba(13, 148, 136, 0.08);
}

.blog-detail-page .blog-post-meta-capsule {
    background: rgba(45, 212, 191, 0.15);
    border: 1px solid rgba(20, 184, 166, 0.25);
    padding: 0.35rem 0.9rem;
    border-radius: 9999px;
    font-size: 0.85rem;
    color: #0F766E;
    font-weight: 500;
}

.blog-detail-page .blog-post-meta-capsule .blog-tag {
    font-weight: 700;
    color: #0D9488;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-size: 0.775rem;
}

.blog-detail-page .blog-main-title {
    font-family: 'Outfit', 'Plus Jakarta Sans', sans-serif;
    font-size: 2.35rem;
    font-weight: 700;
    color: #0F2F2E;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.blog-detail-page .blog-feature-img-wrapper {
    border-radius: 1.25rem;
    overflow: hidden;
    aspect-ratio: 16/9;
    background: #E6FFFA;
    border: 1px solid rgba(20, 184, 166, 0.2);
}

.blog-detail-page .blog-feature-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-detail-page .blog-lead-text {
    font-size: 1.15rem;
    line-height: 1.65;
    color: #3B615D;
    font-weight: 500;
}

.blog-detail-page .blog-section-title {
    font-family: 'Outfit', 'Plus Jakarta Sans', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #0F2F2E;
    line-height: 1.3;
}

.blog-detail-page .blog-paragraph {
    font-size: 1rem;
    line-height: 1.7;
    color: #3B615D;
}

.blog-detail-page .blog-highlight-glass {
    background: rgba(240, 253, 250, 0.9);
    border-left: 4px solid #0D9488;
    border-radius: 1rem;
    border-top: 1px solid rgba(20, 184, 166, 0.2);
    border-right: 1px solid rgba(20, 184, 166, 0.2);
    border-bottom: 1px solid rgba(20, 184, 166, 0.2);
}

.blog-detail-page .highlight-icon-pill {
    width: 42px;
    height: 42px;
    min-width: 42px;
    background: linear-gradient(135deg, #0D9488, #0284C7);
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.blog-detail-page .highlight-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #0F2F2E;
}

.blog-detail-page .highlight-desc {
    font-size: 0.925rem;
    line-height: 1.55;
    color: #3B615D;
}

.blog-detail-page .blog-guide-list {
    padding-left: 1.25rem;
    color: #3B615D;
}

.blog-detail-page .blog-guide-item {
    font-size: 1rem;
    line-height: 1.65;
    margin-bottom: 0.65rem;
}

.blog-detail-page .blog-author-signature-card {
    background: rgba(240, 253, 250, 0.7);
    border: 1px solid rgba(20, 184, 166, 0.25);
    border-radius: 1.25rem;
}

.blog-detail-page .author-avatar-badge {
    width: 52px;
    height: 52px;
    min-width: 52px;
    background: linear-gradient(135deg, #0D9488, #0284C7);
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.blog-detail-page .author-label {
    font-size: 0.775rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #0F766E;
    font-weight: 600;
}

.blog-detail-page .author-full-name {
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #0F2F2E;
    line-height: 1.2;
}

.blog-detail-page .author-sub {
    font-size: 0.85rem;
    color: #5F8783;
}

.blog-detail-page .comments-main-heading {
    font-family: 'Outfit', sans-serif;
    font-size: 1.45rem;
    font-weight: 700;
    color: #0F2F2E;
}

.blog-detail-page .comments-counter-badge {
    background: rgba(45, 212, 191, 0.18);
    color: #0F766E;
    font-weight: 600;
    padding: 0.4rem 0.85rem;
    border-radius: 9999px;
    font-size: 0.825rem;
}

.blog-detail-page .comment-glass-card {
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.95);
    box-shadow: 0 8px 24px -6px rgba(13, 148, 136, 0.06);
}

.blog-detail-page .comment-avatar-placeholder {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0D9488, #0284C7);
    color: #FFFFFF;
    font-size: 1.15rem;
}

.blog-detail-page .comment-avatar-badge {
    position: absolute;
    bottom: -2px;
    right: -2px;
    color: #0D9488;
    font-size: 0.85rem;
    background: #FFFFFF;
    border-radius: 50%;
    line-height: 1;
}

.blog-detail-page .comment-author-name {
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #0F2F2E;
}

.blog-detail-page .comment-verified-pill {
    background: rgba(45, 212, 191, 0.15);
    color: #0F766E;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 9999px;
}

.blog-detail-page .comment-meta-info {
    font-size: 0.8rem;
    color: #5F8783;
}

.blog-detail-page .comment-rating-score {
    color: #0F2F2E;
    font-size: 0.9rem;
}

.blog-detail-page .comment-text {
    color: #3B615D;
    font-size: 0.95rem;
    line-height: 1.55;
}

.blog-detail-page .comment-action-btn {
    background: rgba(240, 253, 250, 0.85);
    border: 1px solid rgba(20, 184, 166, 0.28);
    color: #0F766E;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 9999px;
    padding: 0.35rem 0.85rem;
    transition: all 0.2s ease;
}

.blog-detail-page .comment-action-btn:hover,
.blog-detail-page .comment-action-btn.active {
    background: #0D9488;
    color: #FFFFFF;
    border-color: #0D9488;
}

.blog-detail-page .sidebar-glass-widget {
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-radius: 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.95);
    box-shadow: 0 10px 30px -8px rgba(13, 148, 136, 0.07);
}

.blog-detail-page .sidebar-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #0F2F2E;
}

.blog-detail-page .text-teal {
    color: #0D9488;
}

.blog-detail-page .recent-post-link {
    color: #0F2F2E;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    line-height: 1.35;
    transition: color 0.2s ease;
    display: block;
}

.blog-detail-page .recent-post-link:hover {
    color: #0D9488;
}

.blog-detail-page .recent-post-meta {
    font-size: 0.8rem;
    color: #5F8783;
}

.blog-detail-page .sidebar-badge-pill {
    font-size: 0.8rem;
    font-weight: 600;
    color: #0F766E;
}

.blog-detail-page .sidebar-text {
    font-size: 0.9rem;
    line-height: 1.55;
    color: #3B615D;
}

.blog-detail-page .sidebar-cta-btn {
    background: linear-gradient(135deg, #0D9488 0%, #0284C7 100%);
    color: #FFFFFF;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.65rem 1.25rem;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 14px rgba(13, 148, 136, 0.2);
    transition: all 0.25s ease;
}

.blog-detail-page .sidebar-cta-btn:hover {
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(13, 148, 136, 0.35);
}

.gh-footer {
    background: linear-gradient(180deg, #F0FDF4 0%, #ECFEFF 50%, #E6FFFA 100%);
    padding: 3rem 0 2rem 0;
    position: relative;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    overflow: hidden;
}

.gh-footer__glass-card {
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 1.5rem;
    padding: 2.25rem 2rem 1.75rem 2rem;
    box-shadow: 0 12px 36px -8px rgba(13, 148, 136, 0.08), 0 4px 16px -4px rgba(2, 132, 199, 0.05);
}

.gh-footer__logo {
    max-width: 44px;
    max-height: 44px;
    object-fit: contain;
}

.gh-footer__brand-title {
    font-family: 'Outfit', 'Plus Jakarta Sans', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: #0F2F2E;
    letter-spacing: -0.02em;
}

.gh-footer__brand-desc {
    font-size: 0.925rem;
    line-height: 1.6;
    color: #3B615D;
    max-width: 320px;
}

.gh-footer__origin {
    padding: 0.4rem 0.85rem;
    background: rgba(45, 212, 191, 0.12);
    border: 1px solid rgba(20, 184, 166, 0.25);
    border-radius: 9999px;
}

.gh-footer__origin-icon {
    color: #0D9488;
    font-size: 1rem;
}

.gh-footer__origin-text {
    font-size: 0.825rem;
    font-weight: 600;
    color: #0F766E;
}

.gh-footer__heading {
    font-family: 'Outfit', 'Plus Jakarta Sans', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #0F2F2E;
    margin-bottom: 1.1rem;
    letter-spacing: -0.01em;
}

.gh-footer__links-list li {
    margin-bottom: 0.55rem;
}

.gh-footer__nav-link {
    font-size: 0.925rem;
    color: #3B615D;
    text-decoration: none;
    transition: all 0.25s ease-in-out;
    display: inline-block;
}

.gh-footer__nav-link:hover,
.gh-footer__nav-link:focus-visible {
    color: #0D9488;
    transform: translateX(3px);
}

.gh-footer__contact-item {
    color: #3B615D;
    transition: all 0.25s ease-in-out;
}

.gh-footer__icon-pill {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(20, 184, 166, 0.28);
    border-radius: 50%;
    color: #0D9488;
    font-size: 1rem;
    flex-shrink: 0;
    transition: all 0.25s ease-in-out;
}

.gh-footer__contact-val {
    font-size: 0.9rem;
    font-weight: 500;
    word-break: break-word;
}

.gh-footer__contact-item:hover .gh-footer__icon-pill,
.gh-footer__contact-item:focus-visible .gh-footer__icon-pill {
    background: #0D9488;
    color: #FFFFFF;
    transform: scale(1.08);
}

.gh-footer__contact-item:hover .gh-footer__contact-val,
.gh-footer__contact-item:focus-visible .gh-footer__contact-val {
    color: #0D9488;
}

.gh-footer__divider {
    height: 1px;
    background: linear-gradient(90deg, rgba(20, 184, 166, 0.05) 0%, rgba(20, 184, 166, 0.3) 50%, rgba(20, 184, 166, 0.05) 100%);
}

.gh-footer__copyright {
    font-size: 0.85rem;
    color: #5F8783;
}

.gh-footer__badge {
    font-size: 0.775rem;
    font-weight: 600;
    color: #0F766E;
    background: rgba(45, 212, 191, 0.15);
    border: 1px solid rgba(45, 212, 191, 0.3);
    padding: 0.3rem 0.75rem;
    border-radius: 9999px;
    display: inline-block;
}

@media (max-width: 767.98px) {
    .blog-detail-page .blog-main-title {
        font-size: 1.125rem;
        line-height: 1.25;
        hyphens: auto;
    }

    .blog-detail-page .blog-section-title {
        font-size: 1rem;
        line-height: 1.25;
        hyphens: auto;
    }

    .blog-detail-page .highlight-title,
    .blog-detail-page .comment-author-name,
    .blog-detail-page .sidebar-title {
        font-size: 0.875rem;
        line-height: 1.25;
        hyphens: auto;
    }

    .blog-detail-page .blog-lead-text {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .blog-detail-page .comments-main-heading {
        font-size: 1rem;
        line-height: 1.25;
        hyphens: auto;
    }

    .gh-footer {
        padding: 2.5rem 0 1.5rem 0;
    }

    .gh-footer__glass-card {
        padding: 1.5rem 1.25rem;
        border-radius: 1.25rem;
    }

    .gh-footer__heading {
        font-size: 0.95rem;
        margin-bottom: 0.75rem;
    }

    .gh-footer__brand-title {
        font-size: 1.2rem;
    }

    .gh-footer__brand-desc {
        font-size: 0.875rem;
    }

    .gh-footer__nav-link,
    .gh-footer__contact-val {
        font-size: 0.85rem;
    }
}

/* Stack footer blocks vertically on small screens */
@media (max-width: 767.98px) {
    .gh-footer .row.g-4,
    .gh-footer .row {
        flex-direction: column !important;
        flex-wrap: nowrap !important;
    }
    .gh-footer .row > [class*="col-"] {
        flex: 0 0 100% !important;
        width: 100% !important;
        max-width: 100% !important;
    }
}

