/* GauGrih Header — matches storefront reference design */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@600;700&family=Outfit:wght@400;500;600;700&display=swap');

:root {
    --gg-topbar: #3d2415;
    --gg-topbar-text: #f5efe6;
    --gg-accent: #d97706;
    --gg-accent-dark: #b45309;
    --gg-brown: #7c2d12;
    --gg-search-btn: linear-gradient(180deg, #c2410c 0%, #9a3412 100%);
    --gg-cat-btn: #f3e8dc;
    --gg-text: #2c1810;
    --gg-nav: #4a4038;
    --gg-border: #e8ddd0;
    --gg-new: #dc2626;
    --gg-font: 'Outfit', system-ui, sans-serif;
    --gg-serif: 'Cormorant Garamond', Georgia, serif;
}

header.gg-header {
    font-family: var(--gg-font);
    background: #fff;
}

/* ---------- Top bar ---------- */
.gg-topbar {
    background: var(--gg-topbar);
    color: var(--gg-topbar-text);
    font-size: 13px;
    font-weight: 500;
    line-height: 1.2;
}

.gg-topbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 40px;
    padding-top: 8px;
    padding-bottom: 8px;
}

.gg-topbar-features {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
    min-width: 0;
}

.gg-topbar-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 14px;
    color: var(--gg-topbar-text);
    white-space: nowrap;
}

.gg-topbar-item:first-child {
    padding-left: 0;
}

.gg-topbar-item + .gg-topbar-item {
    border-left: 1px solid rgba(245, 239, 230, 0.25);
}

.gg-topbar-item i,
.gg-topbar-item .gg-ico {
    color: var(--gg-accent);
    font-size: 14px;
    width: 16px;
    text-align: center;
    flex-shrink: 0;
}

.gg-topbar-actions {
    display: flex;
    align-items: center;
    gap: 0;
    flex-shrink: 0;
}

.gg-topbar-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gg-topbar-text) !important;
    text-decoration: none !important;
    padding: 0 14px;
    transition: color 0.2s ease;
}

.gg-topbar-link:hover {
    color: var(--gg-accent) !important;
}

.gg-topbar-link i {
    color: var(--gg-accent);
}

.gg-topbar-social {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding-left: 14px;
    border-left: 1px solid rgba(245, 239, 230, 0.25);
}

.gg-topbar-social a {
    color: var(--gg-topbar-text) !important;
    font-size: 14px;
    line-height: 1;
    transition: color 0.2s ease, transform 0.2s ease;
}

.gg-topbar-social a:hover {
    color: var(--gg-accent) !important;
    transform: translateY(-1px);
}

/* ---------- Main row ---------- */
.gg-mainbar {
    background: #fff;
    border-bottom: 1px solid var(--gg-border);
    padding: 14px 0;
}

.gg-mainbar .container {
    display: flex;
    align-items: center;
    gap: clamp(12px, 2vw, 24px);
}

.gg-logo {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none !important;
    max-width: none;
    color: inherit !important;
}

.gg-logo:hover {
    color: inherit !important;
    text-decoration: none !important;
}

.gg-logo-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 62px;
    height: 62px;
}

.gg-logo-mark img {
    width: 62px;
    height: 62px;
    max-height: none !important;
    max-width: none !important;
    object-fit: contain;
    display: block;
}

header.gg-header .gg-logo .__inline-11,
header.gg-header .gg-logo .mobile-logo-img,
header.gg-header .gg-logo-mark img {
    width: 62px !important;
    height: 62px !important;
    max-width: 62px !important;
    max-height: 62px !important;
    object-fit: contain !important;
}

.gg-logo-mobile {
    display: none !important;
}

.gg-logo-wordmark {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.1;
    min-width: 0;
}

.gg-logo-name {
    font-family: var(--gg-serif);
    font-size: 32px;
    font-weight: 700;
    color: #7c2d12;
    letter-spacing: 0.01em;
    line-height: 1;
}

.gg-logo-tagline {
    margin-top: 4px;
    font-family: var(--gg-font);
    font-size: 11px;
    font-weight: 500;
    color: #9a6b4a;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.gg-search-wrap {
    flex: 1;
    min-width: 0;
    max-width: 720px;
    margin: 0 auto;
}

.gg-search-form {
    display: flex;
    align-items: stretch;
    width: 100%;
    gap: 8px;
    position: relative;
}

.gg-cat-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gg-cat-btn);
    border: none;
    border-radius: 8px;
    padding: 0 14px;
    height: 48px;
    color: var(--gg-text);
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.2s ease, box-shadow 0.2s ease;
}

.gg-cat-toggle:hover,
.gg-cat-toggle.active {
    background: #ead9c8;
    box-shadow: 0 2px 8px rgba(61, 36, 21, 0.08);
}

.gg-cat-toggle i.fa-bars {
    font-size: 14px;
    color: var(--gg-brown);
}

.gg-cat-toggle .gg-caret {
    font-size: 10px;
    opacity: 0.7;
    margin-left: 2px;
}

.gg-search-field {
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: stretch;
    border: 1px solid var(--gg-border);
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.gg-search-field:focus-within {
    border-color: var(--gg-accent);
    box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.12);
}

.gg-search-field .search-bar-input {
    border: 0 !important;
    box-shadow: none !important;
    height: 48px;
    padding: 0 16px;
    font-size: 14px;
    color: var(--gg-text);
    background: transparent;
    flex: 1;
    min-width: 0;
}

.gg-search-field .search-bar-input::placeholder {
    color: #9a8b7a;
}

.gg-search-btn {
    width: 52px;
    height: 48px;
    border: 0;
    background: var(--gg-search-btn);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: filter 0.2s ease, transform 0.15s ease;
}

.gg-search-btn:hover {
    filter: brightness(1.08);
}

.gg-search-btn:active {
    transform: scale(0.97);
}

.gg-search-btn i {
    font-size: 16px;
    color: #fff;
}

.gg-search-wrap .search-card {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 8px);
    z-index: 1050;
    display: none;
    border: 1px solid var(--gg-border);
    border-radius: 14px;
    box-shadow: 0 16px 40px rgba(44, 24, 16, 0.12);
    background: #fffdf9;
}

.gg-tools {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-shrink: 0;
    margin-left: auto;
}

.gg-account,
.gg-cart-tool {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none !important;
    color: var(--gg-text) !important;
    cursor: pointer;
}

.gg-account:hover,
.gg-cart-tool:hover {
    color: var(--gg-accent-dark) !important;
}

.gg-tool-icon {
    width: 42px;
    height: 42px;
    border: 1.5px solid var(--gg-accent);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--gg-accent-dark);
    position: relative;
    flex-shrink: 0;
    background: #fff;
}

.gg-tool-icon i,
.gg-tool-icon svg {
    font-size: 18px;
    width: 18px;
    height: 18px;
}

.gg-tool-icon .gg-badge,
.gg-tool-icon .gg-badge.navbar-tool-label {
    position: absolute;
    top: -4px;
    right: -4px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 999px;
    background: var(--gg-accent-dark) !important;
    color: #fff !important;
    border: 2px solid #fff;
    font-size: 10px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    box-shadow: 0 2px 6px rgba(180, 83, 9, 0.35);
}

.gg-tool-text {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
}

.gg-tool-text .gg-label {
    font-size: 12px;
    font-weight: 500;
    color: #6b5e52;
}

.gg-tool-text .gg-value {
    font-size: 13px;
    font-weight: 700;
    color: var(--gg-text);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.gg-tool-text .gg-value .gg-caret {
    font-size: 10px;
    opacity: 0.65;
}

.gg-mobile-toggles {
    display: none;
    align-items: center;
    gap: 8px;
}

.gg-icon-btn {
    width: 40px;
    height: 40px;
    border: 1px solid var(--gg-border);
    border-radius: 8px;
    background: #fff;
    color: var(--gg-text);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
}

/* ---------- Category nav ---------- */
.gg-navbars {
    background: #fff;
    border-bottom: 1px solid var(--gg-border);
}

.gg-navbars .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 48px;
    overflow: hidden;
}

.gg-nav {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 2px 4px;
    list-style: none;
    margin: 0;
    padding: 0;
    flex: 1;
    min-width: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.gg-nav::-webkit-scrollbar {
    display: none;
}

.gg-nav > li > a {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 14px 10px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--gg-nav) !important;
    text-decoration: none !important;
    border-bottom: 2px solid transparent;
    transition: color 0.2s ease, border-color 0.2s ease;
    white-space: nowrap;
}

.gg-nav > li > a:hover,
.gg-nav > li.active > a,
.gg-nav > li > a.active {
    color: var(--gg-accent) !important;
    border-bottom-color: var(--gg-accent);
}

.gg-nav > li > a .gg-caret {
    font-size: 9px;
    opacity: 0.7;
}

.gg-nav > li.gg-nav-cat {
    display: none;
}

@media (min-width: 768px) {
    .gg-nav > li.gg-nav-cat {
        display: list-item;
    }
}

.gg-nav-new {
    flex-shrink: 0;
    background: var(--gg-new);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 4px 8px;
    border-radius: 3px;
    line-height: 1;
    text-transform: uppercase;
}

/* Flush header into banner — no extra gap */
header.gg-header .navbar-stuck-menu,
header.gg-header .gg-navbars {
    background: #fff !important;
    margin-bottom: 0 !important;
}

header.gg-header .navbar-sticky.mobile-head {
    margin-bottom: 0 !important;
}

/* header.gg-header .navbar-tool-label {
    background: transparent !important;
} */

header.gg-header .gg-tool-icon .navbar-tool-label,
header.gg-header .gg-tool-icon .gg-badge.navbar-tool-label {
    background: var(--gg-accent-dark) !important;
    color: #fff !important;
}

header.gg-header .border-dk {
    border: 0 !important;
    animation: none !important;
    box-shadow: none !important;
}

header.gg-header .border-dk::after {
    display: none !important;
}

/* Megamenu under new header */
header.gg-header .megamenu-wrap {
    border-top: 1px solid var(--gg-border);
}

header.gg-header .category-menu-toggle-btn-text {
    font-family: var(--gg-font);
}

/* Auth/cart dropdowns */
header.gg-header .dropdown-menu {
    border: 1px solid var(--gg-border);
    border-radius: 10px;
    box-shadow: 0 12px 28px rgba(44, 24, 16, 0.1);
    font-family: var(--gg-font);
}

header.gg-header .gg-account-wrap,
header.gg-header .gg-cart-wrap {
    position: relative;
}

header.gg-header .gg-cart-wrap .cart-dropdown,
header.gg-header .gg-account-wrap .dropdown-menu {
    margin-top: 10px;
}

/* ---------- Shopping cart dropdown ---------- */
.gg-cart-dropdown-menu.cart-dropdown,
header.gg-header .gg-cart-dropdown .cart-dropdown,
header.gg-header .gg-cart-wrap .cart-dropdown {
    width: 22rem !important;
    min-width: 22rem;
    max-width: min(22rem, calc(100vw - 24px));
    padding: 0 !important;
    border: 1px solid #efe6da !important;
    border-radius: 14px !important;
    background: #fff !important;
    box-shadow: 0 16px 40px rgba(80, 40, 10, 0.14) !important;
    overflow: hidden;
    font-family: var(--gg-font);
}

.gg-cart-widget {
    padding: 0 !important;
}

.gg-cart-top.widget-cart-top,
.gg-cart-dropdown-menu .widget-cart-top {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 !important;
    padding: 14px 16px !important;
    background: #fffdf9 !important;
    border-bottom: 1px solid #efe6da;
    border-radius: 0 !important;
}

.gg-cart-top h6 {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 !important;
    color: #5c2e16 !important;
    font-size: 15px !important;
    font-weight: 700 !important;
}

.gg-cart-top svg {
    flex-shrink: 0;
}

.gg-cart-saved {
    margin: 12px 16px 0 !important;
    padding: 8px 12px;
    background: #fff7ee;
    border: 1px solid #f0e0cc;
    border-radius: 10px;
    color: #c4783a !important;
    font-weight: 600;
}

.gg-cart-scroll {
    margin: 0 8px;
    padding: 8px 8px 4px;
}

.gg-cart-item.widget-cart-item,
.gg-cart-dropdown-menu .widget-cart-item {
    padding: 10px 8px !important;
    margin: 0 0 8px !important;
    border: 1px solid #efe6da !important;
    border-radius: 12px !important;
    background: #fff;
}

.gg-cart-item:last-child {
    margin-bottom: 4px !important;
}

.gg-cart-thumb {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
    border-radius: 10px !important;
    overflow: hidden !important;
    border: 1px solid #efe6da;
    background: #fffdf9;
}

.gg-cart-thumb img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}

.gg-cart-item .widget-product-title a {
    color: #5c2e16 !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    line-height: 1.35;
    text-decoration: none !important;
}

.gg-cart-item .widget-product-title a:hover {
    color: #c4783a !important;
}

.gg-cart-item .widget-product-meta .text-accent,
.gg-cart-item .widget-product-meta [class*="discount_price_of_"] {
    color: #c4783a !important;
    font-weight: 700 !important;
    font-size: 13px;
}

.gg-cart-item .__quantity {
    border: 1px solid #efe6da !important;
    border-radius: 8px !important;
    overflow: hidden;
    background: #fffdf9;
}

.gg-cart-item .__quantity .cart-qty-btn {
    background: #fffdf9 !important;
    color: #5c2e16 !important;
    border: 0 !important;
}

.gg-cart-item .__quantity .cart-qty-btn:hover {
    background: #f3e8d8 !important;
    color: #c4783a !important;
}

.gg-cart-item .__quantity .cart-qty-input {
    background: #fff !important;
    color: #5c2e16 !important;
    border-left: 1px solid #efe6da !important;
    border-right: 1px solid #efe6da !important;
    font-weight: 700;
}

.gg-cart-item .__quantity .tio-delete {
    color: #c4783a !important;
}

.gg-cart-free-delivery {
    margin: 0 16px;
    padding-top: 8px !important;
    color: #5c4a3c;
}

.gg-cart-progress.progress,
.gg-cart-free-delivery .progress {
    height: 6px !important;
    border-radius: 999px;
    background: #efe6da !important;
    overflow: hidden;
    margin-top: 8px;
}

.gg-cart-progress .progress-bar,
.gg-cart-free-delivery .progress-bar {
    background: #c4783a !important;
    border-radius: 999px;
}

.gg-cart-footer {
    margin: 0 16px;
    padding: 10px 0 8px !important;
    border-top: 1px solid #efe6da;
}

.gg-cart-subtotal {
    color: #5c4a3c;
    font-weight: 600;
}

.gg-cart-subtotal .cart_total_amount,
.gg-cart-subtotal .text-accent {
    color: #5c2e16 !important;
    font-weight: 800 !important;
    font-size: 16px !important;
}

.gg-cart-expand.btn {
    border: 1px solid #d9cbb8 !important;
    color: #5c2e16 !important;
    background: #fff !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    padding: 6px 12px !important;
}

.gg-cart-expand.btn:hover {
    border-color: #c4783a !important;
    color: #c4783a !important;
    background: #fffdf9 !important;
}

.gg-cart-checkout.btn,
.gg-cart-dropdown-menu .gg-cart-checkout {
    margin: 0 16px 16px !important;
    width: calc(100% - 32px) !important;
    background: #5c2e16 !important;
    border-color: #5c2e16 !important;
    color: #fff !important;
    border-radius: 10px !important;
    font-weight: 700 !important;
    padding: 10px 14px !important;
    box-shadow: 0 6px 16px rgba(92, 46, 22, 0.2);
}

.gg-cart-checkout.btn:hover {
    background: #c4783a !important;
    border-color: #c4783a !important;
    color: #fff !important;
}

.gg-cart-empty {
    padding: 28px 16px !important;
    border: 0 !important;
    background: transparent !important;
}

.gg-cart-empty p {
    margin: 0;
    color: #8a7a6c;
    font-size: 13px;
    line-height: 1.5;
}

.gg-cart-dropdown-menu .text-accent {
    color: #c4783a !important;
}

/* ---------- Responsive ---------- */
@media (max-width: 1199.98px) {
    .gg-topbar-item span {
        font-size: 12px;
    }

    .gg-nav > li > a {
        padding: 12px 8px;
        font-size: 11px;
    }
}

@media (max-width: 991.98px) {
    .gg-topbar-features .gg-topbar-item:nth-child(n + 3) {
        display: none;
    }

    .gg-tool-text {
        display: none;
    }

    .gg-tools {
        gap: 10px;
    }

    .gg-logo img.gg-logo-desktop {
        max-height: none;
    }

    .gg-logo-mark {
        width: 54px;
        height: 54px;
    }

    .gg-logo-mark img {
        width: 54px;
        height: 54px;
    }

    .gg-logo-name {
        font-size: 28px;
    }
}

@media (max-width: 767.98px) {
    .gg-topbar .container {
        justify-content: space-between;
        gap: 8px;
    }

    .gg-topbar-features {
        display: none;
    }

    .gg-topbar-link {
        padding-left: 0;
    }

    .gg-topbar-social {
        padding-left: 10px;
    }

    .gg-mainbar {
        padding: 10px 0;
    }

    .gg-mainbar .container {
        flex-wrap: nowrap;
        gap: 10px;
    }

    .gg-logo {
        min-width: 0;
        flex: 1;
    }

    .gg-logo-wordmark {
        overflow: hidden;
    }

    .gg-logo-tagline {
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .gg-logo-desktop {
        display: none !important;
    }

    .gg-logo-mobile {
        display: block !important;
    }

    .gg-logo-mark {
        width: 44px;
        height: 44px;
    }

    .gg-logo-mark img,
    header.gg-header .gg-logo .__inline-11,
    header.gg-header .gg-logo .mobile-logo-img {
        width: 44px !important;
        height: 44px !important;
        max-width: 44px !important;
        max-height: 44px !important;
    }

    .gg-logo-name {
        font-size: 22px;
    }

    .gg-logo-tagline {
        font-size: 9px;
    }

    .gg-mobile-toggles {
        display: inline-flex;
        margin-left: 0;
        flex-shrink: 0;
    }

    .gg-tools {
        gap: 6px;
        flex-shrink: 0;
    }

    .gg-search-wrap {
        max-width: none;
    }

    header.gg-header .search-form-mobile {
        background: #fff8f1 !important;
    }

    .gg-cat-toggle span:not(.gg-caret) {
        display: none;
    }

    .gg-cat-toggle {
        padding: 0 12px;
    }

    .gg-tools .gg-account-wrap {
        display: none !important;
    }

    .gg-tool-icon {
        width: 38px;
        height: 38px;
    }

    .gg-navbars .container {
        display: block;
        padding-top: 0;
        padding-bottom: 0;
        min-height: 0;
        overflow: visible;
    }

    .gg-nav {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        overflow: visible;
    }

    .gg-nav > li > a {
        padding: 12px 4px;
        border-bottom: 1px solid var(--gg-border);
        justify-content: space-between;
    }

    .gg-nav > li.active > a,
    .gg-nav > li > a.active {
        border-bottom-color: var(--gg-border);
        color: var(--gg-accent) !important;
    }

    .gg-nav-new {
        display: none;
    }
}

@media screen and (min-width: 768px) {
    header.gg-header .search-form-mobile {
        position: static !important;
        transform: none !important;
        padding: 0 !important;
        background: transparent !important;
        box-shadow: none !important;
        z-index: auto !important;
        flex: 1;
        min-width: 0;
        max-width: 720px;
        margin: 0 auto;
    }

    header.gg-header .gg-cart-dropdown:hover > .dropdown-menu,
    header.gg-header .gg-account-wrap:hover > .dropdown-menu {
        display: block;
    }
}

/* ---------- GauGrih Loader ---------- */
#loading.loading-parent {
    position: fixed;
    inset: 0;
    z-index: 99999;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    max-width: none;
    flex: none;
}

#loading .gg-loader,
#loading .loading-parent-first-div.gg-loader {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 100%;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(250, 247, 242, 0.88);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.gg-loader-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    min-width: 140px;
    padding: 28px 32px 22px;
    background: #fffdf9;
    border: 1px solid #efe6da;
    border-radius: 18px;
    box-shadow: 0 18px 48px rgba(60, 30, 10, 0.28);
    animation: gg-loader-pop 0.28s ease-out;
}

.gg-loader-ring {
    position: absolute;
    top: 22px;
    width: 88px;
    height: 88px;
    border-radius: 50%;
    border: 2px solid #efe6da;
    border-top-color: #c4783a;
    border-right-color: #5c2e16;
    animation: gg-loader-spin 0.85s linear infinite;
    pointer-events: none;
}

.gg-loader-ring span {
    display: none;
}

.gg-loader-media {
    position: relative;
    z-index: 1;
    width: 64px;
    height: 64px;
    margin-top: 4px;
    border-radius: 50%;
    overflow: hidden;
    background: #fff;
    border: 1px solid #f0e6da;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gg-loader-media img {
    width: 48px !important;
    height: 48px !important;
    max-width: 48px;
    object-fit: contain;
    display: block;
}

.gg-loader-text {
    margin: 8px 0 0;
    font-family: 'Outfit', system-ui, sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: #5c2e16;
    text-transform: capitalize;
}

@keyframes gg-loader-spin {
    to { transform: rotate(360deg); }
}

@keyframes gg-loader-pop {
    from {
        opacity: 0;
        transform: scale(0.92) translateY(8px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@media (max-width: 575.98px) {
    .gg-loader-card {
        padding: 24px 26px 18px;
        min-width: 124px;
    }

    .gg-loader-ring {
        width: 78px;
        height: 78px;
    }

    .gg-loader-media {
        width: 56px;
        height: 56px;
    }

    .gg-loader-media img {
        width: 42px !important;
        height: 42px !important;
    }
}

#loading.loading-parent.d-grid {
    display: flex !important;
    align-items: stretch;
    justify-content: stretch;
}

/* ---------- Shipping Method Modal ---------- */
#buyNowModal.gg-ship-modal .modal-content,
.gg-ship-modal .modal-content {
    border: 1px solid #efe6da !important;
    border-radius: 16px !important;
    box-shadow: 0 18px 48px rgba(80, 40, 10, 0.16) !important;
    background: #fff !important;
    overflow: hidden;
}

#buyNowModal.gg-ship-modal .modal-body,
.gg-ship-modal .modal-body {
    padding: 22px 22px 24px !important;
}

.gg-ship-modal-head .modal-title {
    color: #5c2e16 !important;
    font-size: 18px !important;
    font-weight: 800 !important;
    letter-spacing: 0.01em;
}

.gg-ship-modal-close {
    opacity: 1 !important;
    font-size: 28px !important;
    font-weight: 400 !important;
    color: #8a7a6c !important;
    text-shadow: none !important;
    line-height: 1;
    padding: 0 4px !important;
    margin: 0 !important;
}

.gg-ship-modal-close:hover {
    color: #c4783a !important;
}

.gg-ship-modal-intro {
    color: #5c4a3c;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 12px;
    background: #fffdf9;
    border: 1px solid #efe6da;
    border-radius: 10px;
}

.gg-ship-modal-intro-icon {
    width: 34px;
    height: 34px;
    flex-shrink: 0;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #efe6da;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.gg-ship-modal-intro-icon img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.gg-ship-method-list {
    gap: 10px !important;
}

.gg-ship-method-item {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid #efe6da;
    border-radius: 12px;
    background: #fff;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.gg-ship-method-item:hover {
    border-color: #e2d2bf;
    background: #fffdf9;
}

.gg-ship-method-item input[type='radio'] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.gg-ship-method-radio {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    border-radius: 50%;
    border: 2px solid #d9cbb8;
    position: relative;
    background: #fff;
}

.gg-ship-method-radio::after {
    content: '';
    position: absolute;
    inset: 3px;
    border-radius: 50%;
    background: #c4783a;
    transform: scale(0);
    transition: transform 0.15s ease;
}

.gg-ship-method-item input[type='radio']:checked ~ .gg-ship-method-radio {
    border-color: #c4783a;
}

.gg-ship-method-item input[type='radio']:checked ~ .gg-ship-method-radio::after {
    transform: scale(1);
}

.gg-ship-method-item:has(input[type='radio']:checked) {
    border-color: #c4783a;
    background: #fff7ee;
    box-shadow: 0 0 0 3px rgba(196, 120, 58, 0.1);
}

.gg-ship-method-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
    flex: 1;
}

.gg-ship-method-title {
    color: #5c2e16;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
}

.gg-ship-method-meta {
    color: #8a7a6c;
    font-size: 12px;
    font-weight: 500;
}

.gg-ship-method-price {
    color: #c4783a;
    font-size: 14px;
    font-weight: 800;
    white-space: nowrap;
    margin-left: auto;
}

.gg-ship-modal-btn {
    width: 100%;
    max-width: 320px;
    background: #5c2e16 !important;
    border: 1px solid #5c2e16 !important;
    color: #fff !important;
    border-radius: 10px !important;
    font-weight: 700 !important;
    min-height: 46px;
    padding: 10px 18px !important;
    box-shadow: 0 8px 20px rgba(92, 46, 22, 0.2);
}

.gg-ship-modal-btn:hover {
    background: #c4783a !important;
    border-color: #c4783a !important;
    color: #fff !important;
}

@media (max-width: 575.98px) {
    #buyNowModal.gg-ship-modal .modal-body,
    .gg-ship-modal .modal-body {
        padding: 18px 16px 20px !important;
    }

    .gg-ship-method-item {
        padding: 11px 12px;
    }
}
