* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: #f7f8fa;
    color: #171b20;
    font-family: Arial, "Noto Sans KR", sans-serif;
}

a {
    color: inherit;
    text-decoration: none;
}

.shop-header {
    position: sticky;
    top: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 16px 24px;
    border-bottom: 1px solid #dfe4ea;
    background: rgba(255, 255, 255, .96);
}

.shop-logo {
    font-size: 1.45rem;
    font-weight: 900;
    letter-spacing: 0;
}

.shop-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    font-size: .92rem;
    font-weight: 800;
}

.shop-main {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 24px 0 64px;
}

.shop-hero {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    padding: 18px 0 26px;
    border-bottom: 2px solid #171b20;
}

.shop-kicker {
    display: block;
    margin-bottom: 8px;
    color: #697386;
    font-size: .76rem;
    font-weight: 900;
}

.shop-hero h1 {
    margin: 0;
    font-size: 3.4rem;
    line-height: 1;
    letter-spacing: 0;
}

.shop-hero p {
    max-width: 620px;
    margin: 12px 0 0;
    color: #596575;
    line-height: 1.6;
}

.status-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-end;
}

.status-stack span {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 10px;
    border: 1px solid #171b20;
    border-radius: 999px;
    background: #fff;
    font-size: .82rem;
    font-weight: 900;
}

.shop-filterbar {
    display: grid;
    grid-template-columns: repeat(3, minmax(150px, 1fr)) auto auto;
    gap: 10px;
    align-items: end;
    padding: 16px 0;
    border-bottom: 1px solid #dfe4ea;
}

.product-list {
    display: grid;
    gap: 0;
    background: #fff;
    border-top: 1px solid #dfe4ea;
}

.product-row {
    display: grid;
    grid-template-columns: 112px minmax(0, 1fr) minmax(130px, auto);
    gap: 18px;
    align-items: center;
    min-height: 136px;
    padding: 14px;
    border-bottom: 1px solid #e8edf2;
    transition: background .16s ease, transform .16s ease;
}

.product-row:hover {
    background: #f8fafc;
    transform: translateY(-1px);
}

.product-thumb {
    display: block;
    width: 112px;
    aspect-ratio: 1;
    object-fit: cover;
    border: 1px solid #dfe4ea;
    background: linear-gradient(135deg, #f0f3f7, #e3e8ef);
}

.product-summary {
    display: grid;
    gap: 6px;
    min-width: 0;
}

.product-meta {
    color: #697386;
    font-size: .78rem;
    font-weight: 900;
}

.product-row h2 {
    margin: 0;
    font-size: 1.05rem;
    letter-spacing: 0;
}

.product-row small {
    overflow: hidden;
    color: #596575;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.product-price {
    display: grid;
    gap: 4px;
    justify-items: end;
}

.product-price del {
    color: #8a94a3;
    font-size: .82rem;
}

.price {
    font-weight: 900;
}

.product-current-price {
    margin-bottom: 2px;
    font-size: 1.35rem;
}

.product-current-stock {
    margin: 0 0 18px;
    color: #596575;
    font-size: .9rem;
    font-weight: 800;
}

.button,
button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 15px;
    border: 0;
    border-radius: 6px;
    background: #171b20;
    color: #fff;
    font-weight: 900;
    cursor: pointer;
}

.button-secondary {
    background: #e8edf2;
    color: #171b20;
}

input,
select,
textarea {
    min-height: 42px;
    border: 1px solid #d0d7e2;
    border-radius: 6px;
    padding: 0 11px;
    background: #fff;
    font: inherit;
}

textarea {
    min-height: 90px;
    padding: 10px 11px;
}

label {
    display: grid;
    gap: 7px;
    color: #5f6b7a;
    font-size: .9rem;
    font-weight: 800;
}

.grid-two {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 28px;
    align-items: start;
}

.panel {
    padding-top: 16px;
    border-top: 2px solid #171b20;
}

.order-delivery-summary {
    margin-top: 24px;
    padding-top: 18px;
    border-top: 1px solid #dfe4ea;
}

.order-delivery-summary p {
    margin: 6px 0 0;
    color: #596575;
    line-height: 1.5;
}

.payment-panel form {
    margin-top: 14px;
}

.amount-summary {
    display: grid;
    gap: 10px;
    margin: 0;
}

.amount-summary div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e8edf2;
}

.amount-summary dt {
    color: #596575;
    font-weight: 800;
}

.amount-summary dd {
    margin: 0;
    font-weight: 900;
}

.amount-summary .amount-total {
    padding-top: 4px;
    border-bottom: 0;
    font-size: 1.08rem;
}

.payment-note,
.payment-complete,
.payment-unavailable,
.payment-error {
    margin: 14px 0 0;
    color: #596575;
    line-height: 1.5;
}

.payment-complete {
    color: #176a3a;
    font-weight: 900;
}

.payment-unavailable,
.payment-error {
    color: #9b2c2c;
    font-weight: 800;
}

.payment-panel button:disabled {
    opacity: .65;
    cursor: wait;
}

.payment-attempts {
    margin-top: 24px;
    padding-top: 18px;
    border-top: 1px solid #dfe4ea;
}

.lookup-panel {
    display: grid;
    gap: 14px;
    max-width: 520px;
}

.form-error {
    margin: 0;
    color: #b42318;
    font-weight: 800;
}

.payment-attempt-row {
    display: grid;
    gap: 3px;
    padding: 10px 0;
    border-bottom: 1px solid #e8edf2;
}

.payment-attempt-row span {
    color: #697386;
    font-size: .76rem;
    font-weight: 900;
}

.payment-attempt-row small {
    color: #596575;
}

.product-option-panel {
    display: grid;
    gap: 8px;
    margin: 0 0 14px;
    padding: 0;
    border: 0;
}

.product-option-panel legend {
    margin-bottom: 2px;
    color: #5f6b7a;
    font-size: .9rem;
    font-weight: 900;
}

.option-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 10px;
    align-items: start;
    padding: 12px;
    border: 1px solid #dfe4ea;
    border-radius: 6px;
    background: #fff;
    cursor: pointer;
    transition: border-color .16s ease, background .16s ease, transform .16s ease;
}

.option-card:hover {
    border-color: #8c98a8;
    transform: translateY(-1px);
}

.option-card:has(input:checked) {
    border-color: #171b20;
    background: #f7f8fa;
}

.option-card.is-disabled {
    color: #8a94a3;
    cursor: not-allowed;
    opacity: .72;
}

.option-card input {
    min-height: auto;
    margin-top: 3px;
}

.option-card-body {
    display: grid;
    gap: 3px;
}

.option-card-body small {
    color: #596575;
    line-height: 1.35;
}

.checkout-addresses {
    display: grid;
    gap: 10px;
    margin: 0 0 18px;
    padding: 0 0 18px;
    border: 0;
    border-bottom: 1px solid #dfe4ea;
}

.checkout-addresses legend {
    margin-bottom: 8px;
    color: #171b20;
    font-weight: 900;
}

.address-option {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 10px;
    align-items: start;
    padding: 12px;
    border: 1px solid #dfe4ea;
    border-radius: 6px;
    background: #fff;
}

.address-option input {
    min-height: auto;
    margin-top: 3px;
}

.address-option span {
    display: grid;
    gap: 4px;
}

.address-option small {
    color: #596575;
    line-height: 1.45;
}

.product-detail-image {
    display: block;
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border: 1px solid #dfe4ea;
    background: linear-gradient(135deg, #f0f3f7, #e3e8ef);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
}

.inline-form {
    display: flex;
    align-items: center;
    gap: 8px;
}

.inline-form button,
.inline-form input,
.qty-input {
    min-height: 36px;
}

.qty-input {
    width: 76px;
}

th,
td {
    padding: 12px 10px;
    border-bottom: 1px solid #e8edf2;
    text-align: left;
}

th {
    color: #687385;
    font-size: .82rem;
}

.empty-state {
    margin: 0;
    padding: 28px 14px;
    color: #697386;
    font-weight: 800;
}

@media (max-width: 860px) {
    .shop-header {
        align-items: flex-start;
        flex-direction: column;
        padding: 14px 16px;
    }

    .shop-main {
        width: min(100% - 24px, 1180px);
        padding-top: 18px;
    }

    .shop-hero {
        align-items: flex-start;
        flex-direction: column;
    }

    .shop-hero h1 {
        font-size: 2.4rem;
    }

    .shop-filterbar,
    .grid-two,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .product-row {
        grid-template-columns: 92px minmax(0, 1fr);
        gap: 12px;
        min-height: 116px;
        padding: 12px 0;
        background: transparent;
    }

    .product-thumb {
        width: 92px;
    }

    .product-price {
        grid-column: 2;
        justify-items: start;
    }
}

/* Original newgolf.net public shopping-mall parity layer */
body {
    background: #fff;
}

.shop-header {
    padding: 18px 24px;
    border-bottom-color: #eceff3;
    background: rgba(255, 255, 255, .98);
}

.shop-nav {
    gap: 18px;
    font-size: .88rem;
}

.shop-main {
    width: min(1120px, calc(100% - 28px));
    padding-bottom: 84px;
}

.legacy-shop-home {
    display: grid;
    gap: 26px;
}

.home-hero {
    display: grid;
    align-items: end;
    min-height: 420px;
    margin: -24px calc(50% - 50vw) 0;
    padding: 56px max(24px, calc((100vw - 1120px) / 2)) 48px;
    background:
        linear-gradient(90deg, rgba(17, 24, 39, .84), rgba(17, 24, 39, .2)),
        linear-gradient(135deg, #dce4ec, #f7f7f2);
    color: #fff;
}

.home-hero-copy {
    display: grid;
    gap: 12px;
    max-width: 560px;
}

.home-hero-copy span {
    font-size: .84rem;
    font-weight: 900;
}

.home-hero-copy h1 {
    margin: 0;
    font-size: clamp(3rem, 8vw, 6rem);
    line-height: .95;
}

.home-hero-copy p {
    max-width: 460px;
    margin: 0;
    color: rgba(255, 255, 255, .88);
    line-height: 1.6;
}

.home-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}

.home-entry-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    margin-top: 28px;
    background: #dfe4ea;
}

.home-entry-grid a {
    display: grid;
    gap: 8px;
    min-height: 132px;
    padding: 20px;
    background: #fff;
}

.home-entry-grid strong {
    font-size: 1.1rem;
}

.home-entry-grid span {
    color: #596575;
    line-height: 1.55;
}

.legacy-slider {
    display: grid;
    align-items: end;
    min-height: 360px;
    padding: 38px;
    background:
        linear-gradient(90deg, rgba(17, 24, 39, .78), rgba(17, 24, 39, .18)),
        linear-gradient(135deg, #dce4ec, #f7f7f2);
    color: #fff;
}

.legacy-slider div {
    display: grid;
    gap: 8px;
}

.legacy-slider span {
    font-size: .82rem;
    font-weight: 900;
}

.legacy-slider strong {
    font-size: clamp(2.2rem, 5vw, 4rem);
    line-height: 1;
}

.legacy-slider small {
    font-size: 1.1rem;
}

.shop-category-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 10px;
}

.shop-category-grid a {
    display: grid;
    place-items: center;
    min-height: 76px;
    padding: 10px;
    border: 1px solid #e3e7ed;
    background: #f8fafc;
    color: #1f2933;
    font-size: .86rem;
    font-weight: 900;
    text-align: center;
}

.hot-brand {
    display: grid;
    gap: 14px;
    padding: 8px 0 18px;
    border-bottom: 1px solid #e5e7eb;
    text-align: center;
}

.hot-brand h2,
.factory-section h2 {
    margin: 0;
    font-size: 1.35rem;
}

.hot-brand div {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.hot-brand span {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0 13px;
    border: 1px solid #e5e7eb;
    border-radius: 999px;
    background: #fff;
    color: #4b5563;
    font-size: .84rem;
    font-weight: 800;
}

.factory-section {
    gap: 14px;
    padding-top: 24px;
    border-top: 0;
}

.shop-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 20px 0 0;
}

.shop-pagination a,
.shop-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 0 12px;
    border: 1px solid #dfe4ea;
    border-radius: 6px;
    background: #fff;
    color: #171b20;
    font-size: .86rem;
    font-weight: 900;
}

.shop-pagination a {
    border-color: #171b20;
    background: #171b20;
    color: #fff;
}

.shop-pagination .is-disabled {
    color: #98a2b3;
}

.legacy-product-card.product-row {
    grid-template-columns: 170px minmax(0, 1fr) minmax(130px, auto);
    gap: 20px;
    min-height: 190px;
    padding: 16px;
    border: 1px solid #e8edf2;
}

.legacy-product-card .product-thumb {
    width: 170px;
}

.product-price em {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 9px;
    border-radius: 4px;
    background: #171b20;
    color: #fff;
    font-size: .76rem;
    font-style: normal;
    font-weight: 900;
}

.product-detail-legacy.grid-two {
    grid-template-columns: minmax(0, 1fr) 420px;
}

.detail-gallery {
    display: grid;
    gap: 12px;
}

.detail-gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(68px, 1fr));
    gap: 8px;
}

.detail-thumb {
    width: 100%;
    aspect-ratio: 1;
    border: 1px solid #dfe4ea;
    border-radius: 4px;
    object-fit: cover;
    background: #f1f3f6;
}

.copy-product-link {
    width: 100%;
    background: #f0f2f5;
    color: #171b20;
}

.detail-breadcrumb {
    margin-bottom: 12px;
    color: #6b7280;
    font-size: .82rem;
    font-weight: 800;
}

.detail-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.detail-info {
    display: grid;
    gap: 14px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid #dfe4ea;
}

.detail-info h2 {
    margin: 18px 0 0;
    padding: 13px 14px;
    background: #171b20;
    color: #fff;
    font-size: 1rem;
}

.detail-info ul {
    margin: 0;
    padding: 16px 22px;
    border: 1px solid #e5e7eb;
    line-height: 1.8;
}

.detail-image-stack {
    display: grid;
    gap: 10px;
}

.detail-image-stack img {
    width: 100%;
    border: 1px solid #e5e7eb;
    object-fit: contain;
    background: #fff;
}

@media (min-width: 861px) {
    .mobile-dock {
        display: none;
    }
}

@media (max-width: 860px) {
    .shop-nav {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: 100%;
        gap: 8px;
    }

    .legacy-slider {
        min-height: 280px;
        padding: 26px;
    }

    .home-hero {
        min-height: 360px;
        margin-top: -18px;
        padding: 42px 18px 36px;
    }

    .home-entry-grid {
        grid-template-columns: 1fr;
    }

    .shop-category-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .legacy-product-card.product-row {
        grid-template-columns: 112px minmax(0, 1fr);
        min-height: 132px;
        padding: 10px;
    }

    .legacy-product-card .product-thumb {
        width: 112px;
    }

    .product-detail-legacy.grid-two {
        grid-template-columns: minmax(0, 1fr);
    }

    .detail-gallery,
    .product-detail-legacy .panel {
        min-width: 0;
    }

    .mobile-dock {
        position: fixed;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 20;
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        border-top: 1px solid #dfe4ea;
        background: #fff;
    }

    .mobile-dock a {
        display: grid;
        gap: 3px;
        place-items: center;
        min-height: 54px;
        color: #171b20;
        font-size: .78rem;
        font-weight: 900;
    }

    .mobile-dock-icon {
        display: grid;
        place-items: center;
        width: 20px;
        height: 18px;
        font-size: 1.05rem;
        line-height: 1;
    }
}

.newgolf-live-home {
    min-height: 100vh;
    overflow-x: hidden;
    background: #050505;
    color: #fff;
}

.newgolf-live-home .shop-header,
.newgolf-live-home .mobile-dock {
    display: none;
}

.newgolf-live-home .shop-main {
    width: 100%;
    min-height: 100vh;
    padding: 0;
}

.live-entry {
    position: relative;
    display: grid;
    min-height: 100vh;
    padding: 20px 20px 96px;
    overflow: hidden;
}

.live-slider,
.live-slide,
.live-overlay {
    position: fixed;
    inset: 0;
}

.live-slider {
    z-index: 0;
    overflow: hidden;
}

.live-slide {
    background-position: center;
    background-size: cover;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    transform: translateZ(0);
}

.live-slide.is-active {
    opacity: 1;
}

.live-overlay {
    z-index: 1;
    background: rgba(0, 0, 0, .22);
    transform: translateZ(0);
}

.live-container {
    position: relative;
    z-index: 2;
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: center;
    width: min(100%, 500px);
    min-height: calc(100vh - 116px);
    margin: 0 auto;
}

.live-mark {
    display: grid;
    place-items: center;
    min-height: 64px;
    margin-bottom: 4px;
    color: #a8dc52;
    font-size: 3rem;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, .35));
    animation: liveFadeIn 1s ease;
}

.live-logo-section {
    padding: 8px 0 10px;
    text-align: center;
    animation: liveFadeIn 1s ease;
}

.live-logo-section h1 {
    margin: 0;
    color: #fff;
    font-size: clamp(2.4rem, 10vw, 3.2rem);
    font-weight: 700;
    letter-spacing: 2px;
    line-height: 1.05;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, .5);
}

.live-actions {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 30px 0;
    animation: liveSlideUp .8s ease;
}

.live-action {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 66px;
    gap: 15px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 30px;
    background: rgba(255, 255, 255, .1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, .12);
    color: #fff;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, .8);
    backdrop-filter: blur(10px);
    cursor: pointer;
    transition: transform .4s ease, background .4s ease, box-shadow .4s ease, color .3s ease;
}

.live-action::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .3), transparent);
    animation: liveLightEffect 3s ease-in-out infinite;
}

.live-action i {
    color: #fff;
    font-size: 1.3rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, .8);
    transition: transform .3s ease;
}

.live-action-order {
    border-color: rgba(212, 175, 55, .28);
}

.live-action-shop {
    border-color: rgba(255, 255, 255, .22);
}

.live-action-consult {
    border-color: rgba(100, 150, 255, .28);
}

.live-action:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, .15);
    box-shadow: 0 15px 30px rgba(0, 0, 0, .12);
}

.live-action:hover i {
    transform: scale(1.2);
}

.live-footer {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 4;
    display: flex;
    justify-content: space-around;
    align-items: center;
    min-height: 74px;
    padding: 10px max(20px, calc((100vw - 500px) / 2));
    border-top: 1px solid rgba(255, 255, 255, .2);
    background: rgba(255, 255, 255, .1);
    backdrop-filter: blur(10px);
}

.live-footer a,
.live-footer button {
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    min-height: 54px;
    padding: 6px 10px;
    border: 0;
    background: transparent;
    color: #fff;
    font-size: .8rem;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, .8);
    transition: color .3s ease, transform .3s ease;
}

.live-footer i {
    font-size: 1.2rem;
}

.live-footer a:hover,
.live-footer button:hover {
    color: #d4af37;
    transform: translateY(-3px);
}

.live-copy-toast {
    position: fixed;
    right: 50%;
    bottom: calc(50% - 24px);
    z-index: 60;
    width: min(360px, calc(100vw - 64px));
    display: grid;
    gap: 10px;
    padding: 24px 28px;
    border-radius: 12px;
    background: rgba(15, 15, 15, .94);
    color: #fff;
    font-size: 1.08rem;
    font-weight: 800;
    line-height: 1.35;
    text-align: center;
    box-shadow: 0 18px 42px rgba(0, 0, 0, .28);
    opacity: 0;
    pointer-events: none;
    transform: translate(50%, 14px) scale(.98);
    transition: opacity .2s ease, transform .2s ease;
}

.live-copy-toast strong {
    font-size: 1.14rem;
}

.live-copy-toast.is-visible {
    opacity: 1;
    transform: translate(50%, 0) scale(1);
}

.live-copyright {
    display:none;
    position: fixed;
    right: 0;
    bottom: 76px;
    left: 0;
    z-index: 3;
    margin: 0;
    color: rgba(255, 255, 255, .5);
    font-size: .72rem;
    font-weight: 300;
    letter-spacing: 1px;
    text-align: center;
}

@keyframes liveFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes liveSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes liveLightEffect {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: -100%; }
}

@media (max-width: 480px) {
    .live-entry {
        padding: 18px 18px 92px;
    }

    .live-container {
        min-height: calc(100vh - 110px);
    }

    .live-actions {
        gap: 20px;
        padding: 25px 0;
    }

    .live-action {
        min-height: 62px;
        padding: 0 25px;
    }

    .live-footer i {
        font-size: 1.1rem;
    }

    .live-footer span {
        font-size: .72rem;
    }
}

@media (max-width: 350px) {
    .live-logo-section h1 {
        font-size: 2rem;
    }

    .live-action {
        min-height: 58px;
        padding: 0 20px;
        font-size: 1rem;
    }
}

.newgolf-order-now .shop-header,
.newgolf-order-now .mobile-dock,
.newgolf-order-lookup .shop-header,
.newgolf-order-lookup .mobile-dock {
    display: none;
}

.newgolf-order-now .shop-main {
    width: 100%;
    max-width: none;
    margin: 0;
    min-height: 100vh;
    padding: 20px 0 100px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    color: #212529;
}

.newgolf-order-lookup .shop-main {
    width: 100%;
    max-width: none;
    margin: 0;
    min-height: 100vh;
    padding: 20px 0 100px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    color: #212529;
}

.newgolf-order-now .live-footer {
    z-index: 1000;
    min-height: 82px;
    padding: 10px 20px;
    border-top: 1px solid rgba(0, 0, 0, .1);
    background: #fff;
    backdrop-filter: blur(10px);
}

.newgolf-order-lookup .live-footer {
    z-index: 1000;
    min-height: 82px;
    padding: 10px 20px;
    border-top: 1px solid rgba(0, 0, 0, .1);
    background: #fff;
    backdrop-filter: blur(10px);
}

.newgolf-order-now .live-footer a,
.newgolf-order-now .live-footer button,
.newgolf-order-lookup .live-footer a,
.newgolf-order-lookup .live-footer button {
    min-height: 60px;
    color: #333;
    font-weight: 500;
    text-shadow: none;
}

.order-now-shell {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    padding: 0 15px;
}

.order-lookup-shell {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    padding: 0 15px;
}

.order-now-header,
.order-lookup-header {
    text-align: center;
    margin-bottom: 30px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 12px;
    background: rgba(255, 255, 255, .1);
    backdrop-filter: blur(10px);
}

.order-now-header h1,
.order-lookup-header h1 {
    margin: 0;
    color: #333;
    font-size: 1.8rem;
    letter-spacing: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, .1);
}

.order-now-form-section,
.order-lookup-form-section {
    padding: 25px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 12px;
    background: rgba(255, 255, 255, .1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, .1);
    backdrop-filter: blur(10px);
}

.order-form-group,
.order-lookup-form-group {
    margin-bottom: 20px;
}

.order-file-upload {
    position: relative;
    margin-bottom: 20px;
}

.order-file-upload input {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.order-upload-box {
    display: block;
    margin: 0 0 8px;
    padding: 20px;
    border: 2px dashed rgba(67, 97, 238, .3);
    border-radius: 12px;
    background: rgba(255, 255, 255, .8);
    text-align: center;
    color: #212529;
    cursor: pointer;
    transition: all .3s ease;
}

.order-upload-box:hover {
    border-color: #4361ee;
    background: rgba(255, 255, 255, .9);
}

.order-upload-box i {
    display: block;
    margin-bottom: 10px;
    color: #4361ee;
    font-size: 24px;
    font-style: normal;
}

.order-image-preview {
    display: flex;
    flex-direction: column;
    margin-top: 10px;
}

.order-preview-item {
    display: flex;
    width: 100%;
    margin: 15px 0;
    align-items: flex-start;
}

.order-preview-photo {
    position: relative;
    width: 100px;
    height: 100px;
    flex: 0 0 100px;
    overflow: hidden;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, .1);
}

.order-preview-number {
    position: absolute;
    top: 5px;
    left: 5px;
    z-index: 1;
    display: grid;
    place-items: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(0, 0, 0, .7);
    color: #fff;
    font-size: 11px;
    line-height: 1;
}

.order-preview-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #e9ecef;
}

.order-preview-photo button {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 20px;
    height: 20px;
    min-height: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 0, 0, 0.7);
    color: #fff;
    cursor: pointer;
    padding: 0;
    font-size: 12px;
}

.order-preview-fields {
    flex: 1;
    margin-left: 15px;
    min-width: 0;
}

.order-preview-fields label {
    display: block;
    margin: 0;
}

.newgolf-order-now label {
    display: block;
    margin-bottom: 8px;
    color: #212529;
    font-weight: 600;
}

.newgolf-order-lookup label {
    display: block;
    margin-bottom: 5px;
    color: #333;
    font-weight: 700;
}

.newgolf-order-now input,
.newgolf-order-now select,
.newgolf-order-now textarea,
.newgolf-order-lookup input {
    width: 100%;
    min-height: 48px;
    border: 1px solid rgba(255, 255, 255, .5);
    border-radius: 12px;
    background: rgba(255, 255, 255, .8);
    color: #000;
    font: inherit;
    font-size: 16px;
    transition: all .3s ease;
}

.newgolf-order-now input,
.newgolf-order-now select,
.newgolf-order-lookup input {
    padding: 0 14px;
}

.newgolf-order-now textarea {
    min-height: 100px;
    padding: 14px;
    resize: vertical;
}

.order-preview-fields input,
.order-preview-fields select {
    min-height: 39px;
    margin-top: 8px;
    padding: 0 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background: #fff;
    font-size: 14px;
}

.order-preview-fields label:first-child input {
    margin-top: 0;
}

.newgolf-order-now input[readonly] {
    background-color: #f5f5f5;
    color: #666;
}

.newgolf-order-now input:focus,
.newgolf-order-now select:focus,
.newgolf-order-now textarea:focus,
.newgolf-order-lookup input:focus {
    border-color: #4361ee;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(67, 97, 238, .2);
    outline: 0;
}

.order-postcode-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.order-address-button-group {
    display: flex;
    flex-direction: column;
}

.order-address-button-group label {
    visibility: hidden;
}

.order-postcode-row button,
.order-submit-button,
.order-lookup-form button {
    width: 100%;
    min-height: 46px;
    padding: 8px 16px;
    border: 0;
    border-radius: 4px;
    background: rgba(108, 117, 125, .8);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all .3s ease;
}

.order-postcode-row button:hover {
    background: rgba(84, 91, 98, .8);
}

.order-postcode-layer {
    position: fixed;
    z-index: 40;
    left: 50%;
    top: 50%;
    width: min(460px, calc(100vw - 28px));
    height: min(560px, calc(100vh - 48px));
    overflow: hidden;
    border: 1px solid rgba(17, 24, 39, .18);
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 24px 70px rgba(17, 24, 39, .24);
    transform: translate(-50%, -50%);
}

.order-postcode-layer[hidden] {
    display: none;
}

.order-postcode-close {
    position: absolute;
    z-index: 2;
    top: 8px;
    right: 8px;
    display: grid;
    place-items: center;
    width: 32px;
    min-height: 32px;
    border: 0;
    border-radius: 50%;
    background: rgba(17, 24, 39, .78);
    color: #fff;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
}

.order-now-consent {
    gap: 10px;
}

.order-now-consent label {
    grid-template-columns: 20px 1fr;
    align-items: start;
    gap: 10px;
    color: #322d26;
}

.order-now-consent input {
    width: 18px;
    min-height: 18px;
    margin-top: 2px;
}

.order-form-error,
.order-lookup-error {
    margin: 0 0 20px;
    padding: 15px;
    border-left: 4px solid #f72585;
    border-radius: 8px;
    background: rgba(247, 37, 133, .1);
    color: #721c24;
    font-weight: 600;
}

.order-required {
    color: #f72585;
    font-size: 12px;
}

.order-submit-button,
.order-lookup-form button {
    min-height: 48px;
    margin-top: 10px;
    padding: 14px 28px;
    border-radius: 12px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    font-size: 16px;
}

.order-submit-button:hover,
.order-lookup-form button:hover {
    background: linear-gradient(135deg, #3a56d4 0%, #6509a3 100%);
    box-shadow: 0 4px 12px rgba(0, 0, 0, .15);
    transform: translateY(-2px);
}

.order-image-count {
    margin-top: 10px;
    color: #6c757d;
    font-size: 14px;
    text-align: center;
}

.lookup-results-list {
    display: grid;
    gap: 14px;
    margin-top: 26px;
}

.lookup-results-list h2 {
    margin: 0;
    color: #333;
    font-size: 18px;
}

.lookup-result-card {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .35);
    border-radius: 14px;
    background: rgba(255, 255, 255, .56);
    box-shadow: 0 12px 30px rgba(44, 58, 90, .14);
}

.lookup-result-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, .45);
    background: linear-gradient(135deg, rgba(102, 126, 234, .18), rgba(118, 75, 162, .14));
}

.lookup-result-head span {
    display: block;
    color: #667085;
    font-size: 12px;
    font-weight: 800;
}

.lookup-result-head strong {
    display: block;
    margin-top: 3px;
    color: #212529;
    font-size: 16px;
}

.lookup-status-pill {
    flex: 0 0 auto;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(102, 126, 234, .16);
    color: #4755c8 !important;
    font-size: 12px;
}

.lookup-info-grid {
    display: grid;
    gap: 0;
    margin: 0;
    padding: 0 15px 15px;
}

.lookup-info-grid > div {
    display: grid;
    grid-template-columns: 112px 1fr;
    gap: 10px;
    padding: 13px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .5);
}

.lookup-info-grid > div:last-child {
    border-bottom: 0;
}

.lookup-info-grid dt {
    color: #333;
    font-size: 13px;
    font-weight: 800;
}

.lookup-info-grid dd {
    margin: 0;
    min-width: 0;
    color: #2f3642;
    font-size: 14px;
    line-height: 1.55;
}

.lookup-info-grid dd p {
    margin: 0 0 6px;
}

.lookup-info-grid dd p:last-child {
    margin-bottom: 0;
}

.lookup-product-item {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 10px;
    align-items: center;
    margin-bottom: 10px;
}

.lookup-product-item:last-child {
    margin-bottom: 0;
}

.lookup-product-thumb {
    width: 72px;
    height: 72px;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, .58);
    border-radius: 10px;
    background: rgba(255, 255, 255, .72);
    box-shadow: 0 8px 18px rgba(44, 58, 90, .16);
}

.lookup-product-image-button {
    width: 72px;
    height: 72px;
    padding: 0;
    border: 0;
    border-radius: 10px;
    background: transparent;
    cursor: zoom-in;
}

.lookup-product-image-button:focus-visible {
    outline: 3px solid rgba(102, 126, 234, .48);
    outline-offset: 3px;
}

.lookup-product-image-button:hover .lookup-product-thumb {
    transform: translateY(-1px) scale(1.02);
    box-shadow: 0 12px 24px rgba(44, 58, 90, .22);
}

.lookup-product-image-button .lookup-product-thumb {
    transition: transform .18s ease, box-shadow .18s ease;
}

.lookup-image-modal[hidden] {
    display: none;
}

.lookup-image-modal {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: grid;
    place-items: center;
    padding: 22px;
    background: rgba(15, 18, 28, .78);
    backdrop-filter: blur(8px);
}

.lookup-image-modal-panel {
    width: min(860px, 100%);
    max-height: min(86vh, 820px);
    display: grid;
    grid-template-rows: auto minmax(0, 1fr);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .24);
    border-radius: 18px;
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 26px 70px rgba(0, 0, 0, .35);
}

.lookup-image-modal-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 16px 12px 18px;
    border-bottom: 1px solid rgba(20, 24, 36, .08);
}

.lookup-image-modal-head h2 {
    margin: 0;
    color: #20242d;
    font-size: 16px;
    font-weight: 800;
}

.lookup-image-modal-close {
    width: 38px;
    height: 38px;
    display: inline-grid;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: #20242d;
    color: #fff;
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
}

.lookup-image-modal-close:focus-visible {
    outline: 3px solid rgba(102, 126, 234, .48);
    outline-offset: 3px;
}

.lookup-image-modal-img {
    width: 100%;
    max-height: calc(86vh - 66px);
    object-fit: contain;
    background: #10131c;
}

.lookup-info-grid dd span {
    display: block;
    margin-top: 4px;
    color: #667085;
    font-size: 13px;
}

.lookup-empty-message {
    margin: 26px 0 0;
    padding: 22px 16px;
    border: 1px solid rgba(210, 164, 51, .5);
    border-radius: 12px;
    background: rgba(255, 255, 255, .18);
    color: #8a6500;
    font-size: 17px;
    font-weight: 500;
    text-align: center;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.quick-complete-items {
    display: grid;
    gap: 10px;
    margin-bottom: 18px;
}

.quick-complete-items article {
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 12px;
    align-items: start;
    padding: 12px;
    border: 1px solid #e8edf2;
    border-radius: 8px;
    background: #fbfcfe;
}

.quick-complete-items article > span {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #171b20;
    color: #fff;
    font-size: .82rem;
    font-weight: 900;
}

.quick-complete-items p,
.quick-complete-items small {
    margin: 4px 0 0;
    color: #667085;
}

@keyframes orderFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes orderSlideUp {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .order-now-header,
    .order-now-form,
    .order-upload-box,
    .order-postcode-row button,
    .order-submit-button {
        animation: none;
        transition: none;
    }
}

@media (max-width: 520px) {
    .order-now-shell {
        padding: 0 10px;
    }

    .order-now-header,
    .order-now-form-section {
        border-radius: 12px;
    }

    .lookup-info-grid > div {
        grid-template-columns: 1fr;
        gap: 4px;
    }
}

/* Mobile newgolf.net reference shop */
.newgolf-mobile-shop {
    background: #fff;
    color: #333;
    font-family: Arial, 'Noto Sans KR', sans-serif;
}

.newgolf-mobile-shop .shop-header,
.newgolf-mobile-shop .mobile-dock {
    display: none;
}

.newgolf-mobile-shop .shop-main {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
    background: #fff;
}

.mobile-shop-header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1003;
    width: 100%;
    background: rgba(255, 255, 255, .2);
    color: #fff;
    transition: background-color .3s ease, color .3s ease, box-shadow .3s ease;
    transform: translateZ(0);
}

/* .mobile-shop-header.scrolled,
.mobile-shop-header:has(.mobile-shop-menu-section.active),
.mobile-shop-header:has(.mobile-shop-search.active) {
    background: #fff;
    color: #111;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .1);
} */

.mobile-shop-navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 58px;
    padding: 12px 20px;
    position: relative;
}

.mobile-shop-logo {
    position: absolute;
    left: 50%;
    color: currentColor;
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, .45);
    transform: translateX(-50%);
}

.mobile-shop-header.scrolled .mobile-shop-logo,
.mobile-shop-header:has(.mobile-shop-menu-section.active) .mobile-shop-logo,
.mobile-shop-header:has(.mobile-shop-search.active) .mobile-shop-logo {
    text-shadow: none;
}

.mobile-shop-hamburger,
.mobile-shop-search-toggle {
    width: 40px;
    min-height: 36px;
    display: inline-grid;
    place-items: center;
    border: 0;
    background: transparent;
    color: currentColor;
    cursor: pointer;
}

.mobile-shop-hamburger {
    position: relative;
}

.mobile-shop-hamburger span {
    position: absolute;
    left: 8px;
    width: 24px;
    height: 2px;
    background: currentColor;
    border-radius: 999px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .4);
    transition: transform .28s ease, opacity .2s ease, top .28s ease, box-shadow .28s ease;
}

.mobile-shop-hamburger span:nth-child(1) { top: 10px; }
.mobile-shop-hamburger span:nth-child(2) { top: 17px; }
.mobile-shop-hamburger span:nth-child(3) { top: 24px; }

.mobile-shop-hamburger.active span { box-shadow: none; }
.mobile-shop-hamburger.active span:nth-child(1) { top: 17px; transform: rotate(45deg); }
.mobile-shop-hamburger.active span:nth-child(2) { opacity: 0; }
.mobile-shop-hamburger.active span:nth-child(3) { top: 17px; transform: rotate(-45deg); }

.mobile-shop-menu-section {
    position: fixed;
    top: 58px;
    left: 0;
    z-index: 1002;
    width: 100%;
    height: calc(100vh - 58px);
    display: grid;
    grid-template-rows: auto 1fr;
    background: #fff;
    color: #111;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity .3s ease, transform .3s ease;
}

.mobile-shop-menu-section.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.mobile-shop-menu-heading {
    padding: 18px 20px;
    border-bottom: 1px solid #e8e8e8;
    font-size: 18px;
    font-weight: 800;
    text-align: center;
}

.mobile-shop-menu-content {
    display: grid;
    grid-template-columns: minmax(126px, .9fr) minmax(0, 1.1fr);
    overflow: hidden;
}

.mobile-shop-menu-categories,
.mobile-shop-menu-links {
    display: flex;
    flex-direction: column;
    overflow: auto;
}

.mobile-shop-menu-categories {
    border-right: 1px solid #e0e0e0;
    background: #f8f8f8;
}

.mobile-shop-menu-categories a,
.mobile-shop-menu-links a,
.mobile-shop-menu-links button {
    min-height: 54px;
    display: flex;
    align-items: center;
    padding: 0 18px;
    border: 0;
    border-bottom: 1px solid #e8e8e8;
    background: transparent;
    color: #333;
    font-size: 14px;
    font-weight: 700;
    text-align: left;
}

.mobile-shop-menu-categories a:first-child {
    gap: 8px;
    color: #d2b48c;
}

.mobile-shop-search {
    display: none;
    gap: 8px;
    padding: 0 20px 14px;
    background: #fff;
}

.mobile-shop-search.active {
    display: flex;
}

.mobile-shop-search input {
    flex: 1;
    min-height: 42px;
    border: 1px solid #ddd;
    border-radius: 0;
    padding: 0 12px;
    font: inherit;
}

.mobile-shop-search button {
    min-height: 42px;
    border: 0;
    padding: 0 16px;
    background: #171717;
    color: #fff;
    font-weight: 800;
}

/* /shop header matched to m.newgolf.net */
.newgolf-mobile-shop .mobile-shop-header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1003;
    width: 100%;
    padding: 0;
    background-color: rgba(255, 255, 255, .2);
    color: #fff;
    box-shadow: none;
    transition: background-color .3s ease, color .3s ease, box-shadow .3s ease;
    transform: translateZ(0);
    will-change: transform;
}

/* .newgolf-mobile-shop .mobile-shop-header.scrolled,
.newgolf-mobile-shop .mobile-shop-header:has(.mobile-shop-menu-section.active),
.newgolf-mobile-shop .mobile-shop-header:has(.mobile-shop-search.active) {
    background-color: #fff;
    color: #000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .1);
} */

.newgolf-mobile-shop .mobile-shop-navbar {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 92px;
    padding: 15px 20px;
}

.newgolf-mobile-shop .mobile-shop-logo-section {
    flex-shrink: 0;
    margin-right: 20px;
}

.newgolf-mobile-shop .mobile-shop-logo {
    position: static;
    display: inline-block;
    color: currentColor;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 1px;
    text-decoration: none;
    text-shadow: 0 2px 4px rgba(0, 0, 0, .5);
    transform: none;
    transition: color .3s ease, text-shadow .3s ease;
}

.newgolf-mobile-shop .mobile-shop-header.scrolled .mobile-shop-logo,
.newgolf-mobile-shop .mobile-shop-header:has(.mobile-shop-menu-section.active) .mobile-shop-logo,
.newgolf-mobile-shop .mobile-shop-header:has(.mobile-shop-search.active) .mobile-shop-logo {
    color: #000;
    text-shadow: none;
}

.newgolf-mobile-shop .mobile-shop-hamburger {
    position: relative;
    display: none;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    min-height: 40px;
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    transition: all .3s cubic-bezier(.4, 0, .2, 1);
}

.newgolf-mobile-shop .mobile-shop-hamburger .bar {
    position: absolute;
    left: 8px;
    display: block;
    width: 24px;
    height: 2px;
    border-radius: 0;
    background-color: #fff;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .5);
    transition: all .3s cubic-bezier(.4, 0, .2, 1);
}

.newgolf-mobile-shop .mobile-shop-hamburger .bar:nth-child(1) { top: 12px; }
.newgolf-mobile-shop .mobile-shop-hamburger .bar:nth-child(2) { top: 19px; }
.newgolf-mobile-shop .mobile-shop-hamburger .bar:nth-child(3) { top: 26px; }

.newgolf-mobile-shop .mobile-shop-header.scrolled .mobile-shop-hamburger .bar,
.newgolf-mobile-shop .mobile-shop-header:has(.mobile-shop-menu-section.active) .mobile-shop-hamburger .bar,
.newgolf-mobile-shop .mobile-shop-header:has(.mobile-shop-search.active) .mobile-shop-hamburger .bar {
    background-color: #000;
    box-shadow: none;
}

.newgolf-mobile-shop .mobile-shop-hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.newgolf-mobile-shop .mobile-shop-hamburger.active .bar:nth-child(1) {
    left: 8px;
    width: 24px;
    transform: translateY(7px) rotate(45deg);
}

.newgolf-mobile-shop .mobile-shop-hamburger.active .bar:nth-child(3) {
    left: 8px;
    width: 24px;
    transform: translateY(-7px) rotate(-45deg);
}

.newgolf-mobile-shop .mobile-shop-menu-section {
    position: static;
    z-index: auto;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: auto;
    background: transparent;
    color: inherit;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    transition: none;
}

.newgolf-mobile-shop .mobile-menu-container {
    display: none;
}

.newgolf-mobile-shop .mobile-shop-nav-menu-pc {
    position: relative;
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.newgolf-mobile-shop .mobile-shop-nav-menu-pc li {
    position: relative;
}

.newgolf-mobile-shop .mobile-shop-nav-menu-pc li a {
    display: flex;
    align-items: center;
    min-height: 40px;
    padding: 0 10px;
    color: currentColor;
    font-size: 14px;
    /* font-weight: 600; */
    text-decoration: none;
    text-shadow: 0 2px 4px rgba(0, 0, 0, .5);
    transition: color .3s ease, text-shadow .3s ease;
}

.newgolf-mobile-shop .mobile-shop-header.scrolled .mobile-shop-nav-menu-pc li a {
    color: #000;
    text-shadow: none;
}

.newgolf-mobile-shop .mobile-shop-search-section {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    margin-left: 20px;
}

.newgolf-mobile-shop .nav-icons {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.newgolf-mobile-shop .icon-link,
.newgolf-mobile-shop .mobile-shop-icon-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: 0;
    background: transparent;
    color: currentColor;
    cursor: pointer;
    text-decoration: none;
    text-shadow: 0 2px 4px rgba(0, 0, 0, .5);
    transition: color .3s ease, text-shadow .3s ease;
}

.newgolf-mobile-shop .mobile-shop-header.scrolled .icon-link,
.newgolf-mobile-shop .mobile-shop-header:has(.mobile-shop-search.active) .icon-link,
.newgolf-mobile-shop .mobile-shop-header:has(.mobile-shop-menu-section.active) .icon-link {
    color: #000;
    text-shadow: none;
}

.newgolf-mobile-shop .quick-menu-container {
    position: relative;
    display: inline-block;
    width: auto;
    margin-left: 0;
}

.newgolf-mobile-shop .quick-menu-trigger {
    gap: 8px;
    width: auto;
    padding: 0;
    font: inherit;
}

.newgolf-mobile-shop .quick-menu-text {
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
}

.newgolf-mobile-shop .quick-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    z-index: 1005;
    width: 160px;
    margin-top: 10px;
    padding: 10px 0;
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity .3s ease, transform .3s ease, visibility .3s ease;
}

.newgolf-mobile-shop .quick-menu-container:hover .quick-dropdown,
.newgolf-mobile-shop .quick-menu-container:focus-within .quick-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.newgolf-mobile-shop .quick-dropdown-menu {
    margin: 0;
    padding: 0;
    list-style: none;
}

.newgolf-mobile-shop .quick-dropdown-menu a,
.newgolf-mobile-shop .quick-dropdown-form button {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    width: 100%;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: #333;
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
    text-align: left;
    cursor: pointer;
}

.newgolf-mobile-shop .quick-dropdown-form {
    margin: 0;
}

.newgolf-mobile-shop .quick-dropdown-menu a:hover,
.newgolf-mobile-shop .quick-dropdown-form button:hover {
    background: #f6f6f6;
}

.newgolf-mobile-shop .mobile-shop-global-submenu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 1003;
    width: 100%;
    margin-top: -2px;
    padding: 20px 0;
    background-color: rgba(255, 255, 255, .2);
    box-shadow: 0 4px 12px rgba(0, 0, 0, .1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(0);
    transition: all .3s ease;
}

.newgolf-mobile-shop .mobile-shop-global-submenu.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.newgolf-mobile-shop .submenu-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 30px;
    border-radius: 0 0 12px 12px;
    background-color: transparent;
    overflow: hidden;
}

.newgolf-mobile-shop .submenu-content {
    display: none;
}

.newgolf-mobile-shop .submenu-content.active {
    display: block;
}

.newgolf-mobile-shop .submenu-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 15px;
    align-items: center;
    justify-content: center;
}

.newgolf-mobile-shop .submenu-item {
    overflow: hidden;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background-color: #f9f9f9;
    text-align: left;
    transition: all .3s ease;
}

.newgolf-mobile-shop .submenu-item:hover {
    border-color: #ff6600;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .1);
    transform: translateY(-2px);
}

.newgolf-mobile-shop .submenu-item a {
    position: relative;
    display: block;
    overflow: hidden;
    padding: 12px 15px;
    border-radius: 8px;
    background-color: transparent;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    text-align: center;
    white-space: nowrap;
    transition: all .3s ease;
}

.newgolf-mobile-shop .submenu-item a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 102, 0, .1), transparent);
    transition: left .5s ease;
}

.newgolf-mobile-shop .submenu-item a:hover::before {
    left: 100%;
}

.newgolf-mobile-shop .submenu-item a:hover {
    background-color: #fff;
    color: #ff6600;
    box-shadow: inset 0 0 0 1px #ff6600;
    text-decoration: none;
    transform: none;
}

@media (max-width: 1200px) {
    .newgolf-mobile-shop .submenu-container {
        padding: 15px;
    }

    .newgolf-mobile-shop .submenu-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 15px;
    }
}

@media (max-width: 992px) {
    .newgolf-mobile-shop .submenu-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 12px;
    }
}

.newgolf-mobile-shop .mobile-shop-search.search-box-container {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1004;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 400px;
    max-width: 90vw;
    height: 100%;
    padding: 15px 20px;
    background: #fff;
    box-shadow: -8px 0 24px rgba(0, 0, 0, .15);
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%);
    transition: opacity .3s cubic-bezier(.4, 0, .2, 1), transform .3s cubic-bezier(.4, 0, .2, 1), visibility .3s cubic-bezier(.4, 0, .2, 1);
}

.newgolf-mobile-shop .mobile-shop-search.search-box-container.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.newgolf-mobile-shop .search-box,
.newgolf-mobile-shop .search-box form {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    background: #fff;
}

.newgolf-mobile-shop .search-input {
    flex: 1;
    width: 100%;
    min-height: 48px;
    padding: 12px 88px 12px 20px;
    border: 1px solid #ddd;
    border-radius: 25px;
    outline: none;
    background: #f9f9f9;
    color: #111;
    font-size: 16px;
    transition: border-color .3s ease, background-color .3s ease;
}

.newgolf-mobile-shop .search-input:focus {
    border-color: #333;
    background: #fff;
}

.newgolf-mobile-shop .search-btn,
.newgolf-mobile-shop .close-search-btn {
    position: absolute;
    top: 50%;
    display: inline-grid;
    place-items: center;
    width: 34px;
    height: 34px;
    min-height: 34px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #666;
    font-size: 18px;
    cursor: pointer;
    transform: translateY(-50%);
}

.newgolf-mobile-shop .search-btn { right: 52px; }
.newgolf-mobile-shop .close-search-btn { right: 16px; }

@media (max-width: 768px) {
    .newgolf-mobile-shop .mobile-shop-navbar {
        min-height: 70px;
        padding: 15px;
        justify-content: space-between;
    }

    .newgolf-mobile-shop .mobile-shop-hamburger {
        order: 1;
        display: block;
        flex: none;
    }

    .newgolf-mobile-shop .mobile-shop-logo-section {
        position: absolute;
        left: 50%;
        order: 2;
        margin: 0;
        flex: none;
        transform: translateX(-50%);
    }

    .newgolf-mobile-shop .mobile-shop-search-section {
        order: 3;
        flex: none;
        margin: 0;
        padding: 0;
    }

    .newgolf-mobile-shop .nav-icons {
        gap: 0;
    }

    .newgolf-mobile-shop .quick-menu-container {
        display: none;
    }

    .newgolf-mobile-shop .mobile-shop-menu-section {
        position: fixed;
        top: 70px;
        left: -100%;
        z-index: 1001;
        order: 4;
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
        width: 100%;
        height: calc(100vh - 70px);
        padding: 0;
        background: #fff;
        color: #333;
        overflow-y: auto;
        box-shadow: 0 10px 15px rgba(0, 0, 0, .1);
        opacity: 1;
        pointer-events: auto;
        transform: none;
        transition: left .3s ease;
    }

    .newgolf-mobile-shop .mobile-shop-menu-section.active {
        left: 0;
    }

    .newgolf-mobile-shop .mobile-menu-container {
        display: flex;
        flex-direction: column;
        width: 100%;
        height: 100%;
        overflow: hidden;
    }

    .newgolf-mobile-shop .mobile-shop-menu-heading {
        order: -1;
        display: block;
        width: 100%;
        padding: 20px 22px;
        border-bottom: 1px solid #e0e0e0;
        background: #f5f5f5;
        color: #333;
        font-size: 18px;
        /* font-weight: 800; */
        text-align: left;
    }

    .newgolf-mobile-shop .mobile-shop-menu-content {
        display: flex;
        flex: 1;
        grid-template-columns: none;
        overflow: hidden;
    }

    .newgolf-mobile-shop .main-categories {
        width: 30%;
        height: 100%;
        padding-bottom: 70px;
        background: #f5f5f5;
        overflow-y: auto;
    }

    .newgolf-mobile-shop .mobile-shop-nav-menu {
        display: flex;
        flex-direction: column;
        gap: 0;
        width: 100%;
        height: 100%;
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .newgolf-mobile-shop .main-categories .menu-item {
        position: relative;
        display: flex;
        align-items: center;
        min-height: 63px;
        margin: 0;
        border-bottom: 1px solid #e0e0e0;
        flex-shrink: 0;
    }

    .newgolf-mobile-shop .main-categories .nav-link {
        display: flex;
        align-items: center;
        width: 100%;
        height: 100%;
        padding: 18px 22px;
        background: #f5f5f5;
        color: #333;
        font-size: 14px;
        /* font-weight: 800; */
        text-align: left;
        text-decoration: none;
        transition: background-color .3s ease, color .3s ease;
    }

    .newgolf-mobile-shop .main-categories .nav-link i {
        margin-right: 6px;
    }

    .newgolf-mobile-shop .main-categories .menu-item.active .nav-link,
    .newgolf-mobile-shop .main-categories .nav-link:hover {
        position: relative;
        z-index: 10;
        background: #fff;
        color: #e1251b;
    }

    .newgolf-mobile-shop .main-categories .menu-item.active::after {
        content: '';
        position: absolute;
        right: 0;
        bottom: -1px;
        left: 0;
        z-index: 11;
        height: 3px;
        background: #333;
    }

    .newgolf-mobile-shop .subcategories {
        width: 70%;
        height: 100%;
        background: #fff;
        overflow-y: auto;
    }

    .newgolf-mobile-shop .subcategory-content {
        display: none;
        padding: 26px 20px 180px;
    }

    .newgolf-mobile-shop .subcategory-content.active {
        display: block;
    }

    .newgolf-mobile-shop .subcategory-header {
        margin-bottom: 22px;
        padding-bottom: 22px;
        border-bottom: 1px solid #e0e0e0;
    }

    .newgolf-mobile-shop .subcategory-header h3 {
        margin: 0;
        font-size: 21px;
        font-weight: 900;
        line-height: 1.25;
    }

    .newgolf-mobile-shop .subcategory-header a,
    .newgolf-mobile-shop .subcategory-item a,
    .newgolf-mobile-shop .mobile-shop-quick-grid a,
    .newgolf-mobile-shop .mobile-shop-quick-grid button {
        color: #333;
        font-size: 14px;
        /* font-weight: 800; */
        text-decoration: none;
    }
    .newgolf-mobile-shop .mobile-shop-quick-grid form {
        display: contents;
    }

    .newgolf-mobile-shop .mobile-shop-quick-grid a.point,
    .newgolf-mobile-shop .mobile-shop-quick-grid button.point {
        min-height: 30px;
        border: 1px solid #ff6600;
        color: #ff6600;
        padding: 5px;
    }

    .newgolf-mobile-shop .mobile-shop-address-link {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        width: min(100%, 270px);
        min-height: 38px;
        padding: 10px 18px;
        border-radius: 4px;
        background: #d2b48c;
        color: #fff !important;
        font-size: 16px;
        /* font-weight: 900; */
        transition: background-color .3s ease;
    }

    .newgolf-mobile-shop .subcategory-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px 10px;
    }

    .newgolf-mobile-shop .subcategory-item a,
    .newgolf-mobile-shop .mobile-shop-quick-grid a,
    .newgolf-mobile-shop .mobile-shop-quick-grid button {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 52px;
        padding: 10px 12px;
        border: 1px solid #ddd;
        border-radius: 4px;
        background: #fff;
        box-shadow: 0 1px 3px rgba(0, 0, 0, .08);
        text-align: center;
        line-height: 1.25;
        font-size:12px;
        transition: border-color .2s ease, box-shadow .2s ease, color .2s ease;
    }

    .newgolf-mobile-shop .subcategory-item a:hover,
    .newgolf-mobile-shop .mobile-shop-quick-grid a:hover,
    .newgolf-mobile-shop .mobile-shop-quick-grid button:hover {
        border-color: #ff6600;
        color: #ff6600;
        box-shadow: 0 3px 10px rgba(0, 0, 0, .1);
    }

    .newgolf-mobile-shop .mobile-shop-nav-menu-pc,
    .newgolf-mobile-shop .mobile-shop-global-submenu {
        display: none;
    }

    .newgolf-mobile-shop .mobile-shop-search.search-box-container {
        width: 100%;
        max-width: 100vw;
        right: 0;
    }
}

.mobile-shop-hero {
    position: relative;
    height: min(700px, 78vh);
    min-height: 460px;
    overflow: hidden;
    background: #000;
    perspective: 1500px;
}

.mobile-shop-hero-slider,
.mobile-shop-slider-item,
.mobile-shop-slider-item img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.mobile-shop-slider-item {
    opacity: 0;
    z-index: 0;
    transform: rotateX(90deg) translateZ(0);
    transform-origin: center;
    backface-visibility: hidden;
    transition: transform 1.5s ease, opacity 1.5s ease;
}

.mobile-shop-slider-item.active {
    opacity: 1;
    z-index: 2;
    transform: rotateX(0deg) translateZ(0);
    animation: mobileShopFlipIn 1.5s ease;
}

.mobile-shop-slider-item:not(.active) {
    transform: rotateX(-90deg) translateZ(0);
    animation: mobileShopFlipOut 1.5s ease;
}

.mobile-shop-slider-item img {
    object-fit: cover;
    object-position: center;
}

@keyframes mobileShopFlipIn {
    from { opacity: 0; transform: rotateX(90deg) translateZ(0); }
    to { opacity: 1; transform: rotateX(0deg) translateZ(0); }
}

@keyframes mobileShopFlipOut {
    from { opacity: 1; transform: rotateX(0deg) translateZ(0); }
    to { opacity: 0; transform: rotateX(-90deg) translateZ(0); }
}

.mobile-shop-slider-controls {
    position: absolute;
    top: 50%;
    right: 0;
    left: 0;
    z-index: 3;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    transform: translateY(-50%);
}

.mobile-shop-slider-controls button {
    width: 50px;
    min-height: 50px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, .3);
    color: #fff;
    cursor: pointer;
    transition: background-color .3s ease, transform .3s ease;
}

.mobile-shop-slider-controls button:hover {
    background: rgba(255, 255, 255, .5);
    transform: scale(1.1);
}

.mobile-shop-more-button {
    position: absolute;
    right: 50%;
    bottom: 72px;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 50px;
    border-radius: 50px;
    background: #d4af37;
    color: #000;
    font-size: 16px;
    letter-spacing: 1px;
    transform: translateX(50%);
    transition: transform .3s ease, background-color .3s ease;
}

.mobile-shop-more-button:hover {
    background: #b8941f;
    transform: translateX(50%) translateY(-2px);
}

.mobile-shop-category-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 1px;
    background: #fff;
}

.mobile-shop-category-grid a {
    overflow: hidden;
    aspect-ratio: 2 / 1;
    background: #f0f0f0;
}

.mobile-shop-category-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s ease;
}

.mobile-shop-category-grid a:hover img {
    transform: scale(1.05);
}

.mobile-shop-brand-loop {
    padding: 40px 0;
    background: #f9f9f9;
    overflow: hidden;
}

.mobile-shop-brand-loop h2 {
    margin: 0 0 30px;
    color: #333;
    font-size: 24px;
    font-weight: 700;
    text-align: center;
}

.mobile-shop-brand-window {
    overflow: hidden;
}

.mobile-shop-brand-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: mobileShopBrandLoop 30s linear infinite;
}

.mobile-shop-brand-item {
    width: 200px;
    flex: 0 0 auto;
    overflow: hidden;
    border-radius: 8px;
    background: #fff;
}

.mobile-shop-brand-item img {
    display: block;
    width: 100%;
    aspect-ratio: 2 / 1;
    object-fit: cover;
}

@keyframes mobileShopBrandLoop {
    from { transform: translateX(0); }
    to { transform: translateX(calc(-50% - 90px)); }
}

.mobile-shop-filterbar {
    display: none;
}

.mobile-shop-product-display {
    max-width: 1800px;
    margin: 0 auto;
    padding: 10px 0 46px;
    background: #fff;
}

.mobile-shop-product-display h2 {
    position: relative;
    left: 50%;
    display: inline-block;
    margin: 20px 0 50px;
    padding: 20px 30px;
    color: #333;
    font-size: 36px;
    font-weight: 800;
    text-align: center;
    transform: translateX(-50%);
}

.mobile-shop-product-display h2::after {
    content: attr(data-en);
    display: block;
    margin-top: 8px;
    color: #7f8c8d;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.mobile-shop-product-display h2::before {
    content: '';
    position: absolute;
    inset: -10px;
    z-index: -1;
    border: 2px solid #3498db;
    border-radius: 50px;
    opacity: .3;
    animation: mobileShopFramePulse 3s ease-in-out infinite;
}

@keyframes mobileShopFramePulse {
    0%, 100% { opacity: .3; transform: scale(1); }
    50% { opacity: .6; transform: scale(1.02); }
}

.mobile-shop-product-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 20px;
    width: 100%;
    padding: 0;
}

.mobile-shop-product-card {
    display: flex;
    flex-direction: column;
    padding: 10px;
    background: #fff;
    color: inherit;
    transition: box-shadow .3s ease;
}

.mobile-shop-product-card:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, .15);
}

.mobile-shop-product-image {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    background: #fff;
}

.mobile-shop-product-image::before,
.mobile-shop-product-image::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    box-sizing: border-box;
}

.mobile-shop-product-image::before {
    border-top: 2px solid transparent;
    border-bottom: 2px solid transparent;
}

.mobile-shop-product-image::after {
    border-right: 2px solid transparent;
    border-left: 2px solid transparent;
}

.mobile-shop-product-card:hover .mobile-shop-product-image::before {
    animation: mobileShopBorderHorizontal .5s ease forwards;
}

.mobile-shop-product-card:hover .mobile-shop-product-image::after {
    animation: mobileShopBorderVertical .5s ease forwards;
}

@keyframes mobileShopBorderHorizontal {
    0% { border-color: transparent; clip-path: inset(0 50%); }
    100% { border-top-color: #d2b48c; border-bottom-color: #d2b48c; clip-path: inset(0); }
}

@keyframes mobileShopBorderVertical {
    0% { border-color: transparent; clip-path: inset(50% 0); }
    100% { border-left-color: #d2b48c; border-right-color: #d2b48c; clip-path: inset(0); }
}

.mobile-shop-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mobile-shop-product-info {
    display: grid;
    justify-items: center;
    gap: 8px;
    padding: 15px 0 0;
    text-align: center;
}

.mobile-shop-product-info strong {
    min-height: 36px;
    display: -webkit-box;
    overflow: hidden;
    color: #333;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.4;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.mobile-shop-product-price {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.mobile-shop-product-price del {
    color: #999;
    font-size: 12px;
}

.mobile-shop-product-price em {
    color: #333;
    font-size: 28px;
    font-style: normal;
    font-weight: 800;
}

.mobile-shop-factory-badge {
    display: inline-block;
    margin-top: 2px;
    padding: 6px 12px;
    border-radius: 20px;
    background: #ff6600;
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .5px;
    box-shadow: 0 2px 8px rgba(255, 102, 0, .3);
}

.mobile-shop-bottom-menu {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-around;
    align-items: center;
    min-height: 66px;
    padding: 8px 0;
    background: #fff;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, .1);
}

.mobile-shop-bottom-menu a,
.mobile-shop-bottom-menu button {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    min-height: 50px;
    border: 0;
    background: transparent;
    color: #666;
    font-size: 11px;
}

.mobile-shop-bottom-menu i {
    font-size: 20px;
}

.mobile-shop-footer {
    display: grid;
    justify-items: center;
    gap: 14px;
    padding: 40px 15px 88px;
    background: #e8e8e8;
    color: #999;
    text-align: center;
}

.mobile-shop-footer a {
    color: #000;
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 1px;
}

.mobile-shop-footer p {
    margin: 0;
    font-size: 14px;
}

.newgolf-category-list-page .mobile-shop-header {
    background: #fff;
    color: #333;
    box-shadow: none;
    transition: none;
}

.newgolf-category-list-page .mobile-shop-header.scrolled,
.newgolf-category-list-page .mobile-shop-header:has(.mobile-shop-menu-section.active),
.newgolf-category-list-page .mobile-shop-header:has(.mobile-shop-search.active) {
    background: #fff;
    color: #333;
    box-shadow: none;
}

.newgolf-category-list-page .mobile-shop-logo,
.newgolf-category-list-page .mobile-shop-nav-menu-pc li a,
.newgolf-category-list-page .icon-link,
.newgolf-category-list-page .mobile-shop-icon-link {
    color: #333;
    text-shadow: none;
    transition: none;
}

.newgolf-category-list-page .mobile-shop-hamburger .bar,
.newgolf-category-list-page .mobile-shop-header.scrolled .mobile-shop-hamburger .bar,
.newgolf-category-list-page .mobile-shop-header:has(.mobile-shop-menu-section.active) .mobile-shop-hamburger .bar,
.newgolf-category-list-page .mobile-shop-header:has(.mobile-shop-search.active) .mobile-shop-hamburger .bar {
    background-color: #333;
    box-shadow: none;
}

.newgolf-category-list-page .mobile-shop-header.scrolled .mobile-shop-logo,
.newgolf-category-list-page .mobile-shop-header:has(.mobile-shop-menu-section.active) .mobile-shop-logo,
.newgolf-category-list-page .mobile-shop-header:has(.mobile-shop-search.active) .mobile-shop-logo,
.newgolf-category-list-page .mobile-shop-header.scrolled .mobile-shop-nav-menu-pc li a,
.newgolf-category-list-page .mobile-shop-header.scrolled .icon-link,
.newgolf-category-list-page .mobile-shop-header:has(.mobile-shop-search.active) .icon-link,
.newgolf-category-list-page .mobile-shop-header:has(.mobile-shop-menu-section.active) .icon-link {
    color: #333;
    text-shadow: none;
}

.mobile-category-list-shell {
    margin: 0 auto;
    padding: 79px 0 32px;
    background: #fff;
}

.mobile-category-current {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80px;
    margin: 0;
    padding: 0 24px;
    border-bottom: 1px solid #e4e6ea;
    background: #f7f7f7;
    text-align: center;
    color: #333;
    font-size: 20px;
    font-weight: 800;
    line-height: 1.4;
}

.mobile-category-current a {
    color: #333;
    font-size: 16px;
    /* font-weight: 800; */
    line-height: 1.4;
}

.mobile-category-filterbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px 16px;
    min-height: 114px;
    margin: 0 auto;
    padding: 24px;
    border-bottom: 1px solid #e4e6ea;
    background: #fff;
    box-shadow: 0 4px 10px rgba(15, 23, 42, .06);
}

.mobile-category-filterbar select {
    appearance: none;
    width: 184px;
    /* height: 54px; */
    min-height: 38px;
    box-sizing: border-box;
    border: 1px solid #d8dee8;
    border-radius: 6px;
    background-color: #fff;
    background-image: url("data:image/svg+xml,%3Csvg width='14' height='8' viewBox='0 0 14 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.5 1.5 7 6.5l5.5-5' fill='none' stroke='%23ff6600' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 22px center;
    color: #545c68;
    font: inherit;
    font-size: 15px;
    /* font-weight: 800; */
    padding: 10px 35px 10px 15px;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.mobile-category-filterbar select:hover,
.mobile-category-filterbar select:focus {
    border-color: #ff6600;
    box-shadow: 0 0 0 3px rgba(255, 102, 0, .10);
    outline: 0;
}

.mobile-category-product-display {
    padding: 50px 0 40px;
    background: #fff;
}

.mobile-category-product-list,
.mobile-category-product-list.product-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 20px;
}

.mobile-category-product,
.mobile-category-product.product-item {
    position: relative;
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 10px;
    border: 0;
    background: #fff;
    color: #333;
    box-shadow: none;
    transition: .3s;
}

.mobile-category-product-image,
.mobile-category-product-image.product-image {
    position: relative;
    display: flex;
    overflow: hidden;
    aspect-ratio: 1;
    background: #fff;
    box-shadow: none;
    transition: .3s;
}

.mobile-category-product-image::before,
.mobile-category-product-image::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    box-sizing: border-box;
    z-index: 2;
}

.mobile-category-product-image::before {
    border-top: 2px solid transparent;
    border-bottom: 2px solid transparent;
    animation: .5s ease 0s 1 normal forwards paused mobileCategoryBorderHorizontal;
}

.mobile-category-product-image::after {
    border-left: 2px solid transparent;
    border-right: 2px solid transparent;
    animation: .5s ease 0s 1 normal forwards paused mobileCategoryBorderVertical;
}

.mobile-category-product:hover .mobile-category-product-image::before {
    animation: .5s ease 0s 1 normal forwards running mobileCategoryBorderHorizontal;
}

.mobile-category-product:hover .mobile-category-product-image::after {
    animation: .5s ease 0s 1 normal forwards running mobileCategoryBorderVertical;
}

.mobile-category-product:not(:hover) .mobile-category-product-image::before {
    animation: .5s ease 0s 1 normal forwards running mobileCategoryBorderHorizontalReverse;
}

.mobile-category-product:not(:hover) .mobile-category-product-image::after {
    animation: .5s ease 0s 1 normal forwards running mobileCategoryBorderVerticalReverse;
}

.mobile-category-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.mobile-category-product:hover {
    box-shadow: rgba(0, 0, 0, .15) 0 4px 15px;
}

.mobile-category-product:hover .mobile-category-product-image {
    box-shadow: none;
}

@keyframes mobileCategoryBorderHorizontal {
    0% { border-top-width: 2px; border-top-color: transparent; clip-path: inset(0 50%); }
    50% { border-top-color: rgb(210, 180, 140); border-bottom-color: rgb(210, 180, 140); clip-path: inset(0); }
    100% { border-top-width: 2px; border-top-color: rgb(210, 180, 140); border-bottom-width: 2px; border-bottom-color: rgb(210, 180, 140); clip-path: inset(0); }
}

@keyframes mobileCategoryBorderVertical {
    0% { border-left-width: 2px; border-left-color: transparent; border-right-width: 2px; border-right-color: transparent; clip-path: inset(50% 0); }
    50% { border-left-color: rgb(210, 180, 140); border-right-color: rgb(210, 180, 140); clip-path: inset(0); }
    100% { border-left-width: 2px; border-left-color: rgb(210, 180, 140); border-right-width: 2px; border-right-color: rgb(210, 180, 140); clip-path: inset(0); }
}

@keyframes mobileCategoryBorderHorizontalReverse {
    0% { border-top-width: 2px; border-top-color: rgb(255, 102, 0); border-bottom-width: 2px; border-bottom-color: rgb(255, 102, 0); clip-path: inset(0); }
    50% { border-top-color: rgb(255, 102, 0); border-bottom-color: rgb(255, 102, 0); clip-path: inset(0 50%); }
    100% { border-top-width: 2px; border-top-color: transparent; border-bottom-width: 2px; border-bottom-color: transparent; clip-path: inset(0 50%); }
}

@keyframes mobileCategoryBorderVerticalReverse {
    0% { border-left-width: 2px; border-left-color: rgb(255, 102, 0); border-right-width: 2px; border-right-color: rgb(255, 102, 0); clip-path: inset(0); }
    50% { border-left-color: rgb(255, 102, 0); border-right-color: rgb(255, 102, 0); clip-path: inset(50% 0); }
    100% { border-left-width: 2px; border-left-color: transparent; border-right-width: 2px; border-right-color: transparent; clip-path: inset(50% 0); }
}

.mobile-category-product-info,
.mobile-category-product-info.product-info {
    display: block;
    min-height: 108.8px;
    padding: 8px;
    background: #fff;
    text-align: center;
}

.mobile-category-product-info strong,
.mobile-category-product-info .product-title {
    display: flow-root;
    overflow: hidden;
    min-height: 30px;
    margin: 10px 0 10px;
    padding: 0;
    color: #333;
    font-size: 13px;
    font-weight: 400;
    line-height: 15.4px;
    word-break: keep-all;
}

.mobile-category-product-info span,
.mobile-category-product-info .product-price {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 0 0 8px;
    color: #333;
    font-size: 28px;
    font-weight: 800;
    line-height: 25.6px;
}

.mobile-category-product-info em,
.mobile-category-product-info .add-to-cart-btn {
    position: relative;
    display: inline-block;
    overflow: hidden;
    min-height: 0;
    margin: 4px 0 0;
    padding: 3px 6px;
    border: 0;
    border-radius: 20px;
    background: #ff6600;
    color: #fff;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    padding:6px 12px;
}

.mobile-category-empty {
    grid-column: 1 / -1;
    min-height: 160px;
    display: grid;
    place-items: center;
    color: #777;
    /* font-weight: 800; */
}

.mobile-category-pagination {
    margin-top: 30px;
    padding: 0;
    border-top: 0;
    justify-content: center;
}

.mobile-category-pagination a,
.mobile-category-pagination span {
    min-width: 34px;
    min-height: 34px;
    justify-content: center;
    border: 1px solid #ddd;
    border-radius: 0;
    background: #fff;
    color: #333;
}

.mobile-category-pagination span[aria-current="page"] {
    border-color: #ff6600;
    background: #ff6600;
    color: #fff;
}

.shop-page-jump {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 18px 0 8px;
    color: #333;
    font-size: 14px;
    /* font-weight: 800; */
}

.shop-page-jump input {
    width: 54px;
    min-height: 34px;
    border: 1px solid #ddd;
    text-align: center;
}

.shop-page-jump button {
    min-height: 34px;
    border: 1px solid #ff6600;
    background: #ff6600;
    color: #fff;
    padding: 0 14px;
    font-weight: 900;
}

@media (max-width: 1200px) {
    .mobile-shop-product-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 15px; }
    .mobile-category-product-list,
    .mobile-category-product-list.product-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 15px; }
}

@media (max-width: 1024px) {
    .mobile-shop-product-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; }
    .mobile-category-product-list,
    .mobile-category-product-list.product-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; }
}

@media (max-width: 768px) {
    .newgolf-mobile-shop { padding-bottom: 72px; }
    .mobile-shop-hero { height: 700px; min-height: 700px; }
    .mobile-shop-slider-controls { padding: 0 10px; }
    .mobile-shop-slider-controls button { width: 40px; min-height: 40px; }
    .mobile-shop-category-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .mobile-shop-brand-item { width: 150px; }
    .mobile-shop-product-display { padding: 40px 0; }
    .mobile-shop-product-display h2 { font-size: 28px; padding: 15px 20px; }
    .mobile-shop-product-display h2::after { font-size: 13px; letter-spacing: 2px; }
    .mobile-shop-product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; }
    .mobile-shop-product-price em { font-size: 13px; }
    .mobile-shop-product-price del { font-size: 11px; }
    newgolf-mobile-shop .mobile-shop-icon-link svg { width:24px; height: 24px; }
    .mobile-category-list-shell { padding-top: 87px; }
    .mobile-category-current { min-height: 92px; padding: 0 16px; }
    .mobile-category-current,
    .mobile-category-current a { font-size: 18px; }
    .mobile-category-filterbar { gap: 10px 12px; min-height: 128px; margin: 0 auto; padding: 18px 13px; }
    .mobile-category-filterbar select { width: calc((100% - 12px) / 2); height: 42px; min-height: 42px; padding: 0 38px 0 14px; background-position: right 14px center; font-size: 14px; }
    .mobile-category-filterbar select:first-of-type { width: 100%; }
    .mobile-category-product-list,
    .mobile-category-product-list.product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; }
}

@media (min-width: 769px) {
    .mobile-shop-bottom-menu {
        display: none;
    }
}

@media (max-width: 576px) {
    .mobile-shop-hero { height: 620px; min-height: 620px; }
    .mobile-shop-more-button { bottom: 54px; padding: 10px 30px; font-size: 13px; }
    .mobile-shop-product-display h2 { font-size: 24px; padding: 12px 15px; }
    .mobile-shop-product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 5px; }
    .mobile-shop-product-card { padding: 5px; }
    .mobile-shop-product-info { padding: 8px 0 0; }
    .mobile-shop-product-info strong { min-height: 30px; font-size: 11px; }
    .mobile-shop-factory-badge { padding: 4px 8px; font-size: 10px; }
    .mobile-category-product-list,
    .mobile-category-product-list.product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 5px; }
}

@media (prefers-reduced-motion: reduce) {
    .mobile-shop-slider-item,
    .mobile-shop-brand-track,
    .mobile-shop-product-display h2::before {
        animation: none !important;
        transition: none !important;
    }
}

.newgolf-product-detail-page {
    background: #fff;
}

.newgolf-product-detail-page .mobile-shop-header {
    background: #fff;
    color: #000;
    box-shadow: none;
    transition: none;
}

.newgolf-product-detail-page .mobile-shop-header.scrolled,
.newgolf-product-detail-page .mobile-shop-header:has(.mobile-shop-menu-section.active),
.newgolf-product-detail-page .mobile-shop-header:has(.mobile-shop-search.active) {
    background: #fff;
    color: #000;
    box-shadow: none;
}

.newgolf-product-detail-page .mobile-shop-logo,
.newgolf-product-detail-page .mobile-shop-nav-menu-pc li a,
.newgolf-product-detail-page .icon-link,
.newgolf-product-detail-page .mobile-shop-icon-link {
    color: #666;
    text-shadow: none;
    transition: none;
}
.newgolf-product-detail-page .mobile-shop-logo { color:#333; }

.newgolf-product-detail-page .mobile-shop-hamburger .bar,
.newgolf-product-detail-page .mobile-shop-header.scrolled .mobile-shop-hamburger .bar,
.newgolf-product-detail-page .mobile-shop-header:has(.mobile-shop-menu-section.active) .mobile-shop-hamburger .bar,
.newgolf-product-detail-page .mobile-shop-header:has(.mobile-shop-search.active) .mobile-shop-hamburger .bar {
    background-color: #000;
    box-shadow: none;
}

.newgolf-product-detail-page .mobile-shop-header.scrolled .mobile-shop-logo,
.newgolf-product-detail-page .mobile-shop-header:has(.mobile-shop-menu-section.active) .mobile-shop-logo,
.newgolf-product-detail-page .mobile-shop-header:has(.mobile-shop-search.active) .mobile-shop-logo,
.newgolf-product-detail-page .mobile-shop-header.scrolled .mobile-shop-nav-menu-pc li a,
.newgolf-product-detail-page .mobile-shop-header.scrolled .icon-link,
.newgolf-product-detail-page .mobile-shop-header:has(.mobile-shop-search.active) .icon-link,
.newgolf-product-detail-page .mobile-shop-header:has(.mobile-shop-menu-section.active) .icon-link {
    color: #000;
    text-shadow: none;
}

.newgolf-product-detail-page .shop-main {
    padding-top: 88px;
}

.newgolf-product-detail-page .product-detail-legacy.grid-two {
    display: block;
    max-width: 1440px;
    margin: 0 auto;
    background: #fff;
}

.newgolf-product-detail-page .product-detail-legacy .row {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    margin: 0;
    padding: 40px;
}

.newgolf-product-detail-page .product_images,
.newgolf-product-detail-page .product_info {
    flex: 1 1 0;
    min-width: 0;
    width: calc(50% - 20px);
}

.newgolf-product-detail-page .product-gallery2 {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    width: 100%;
    margin-bottom: 1px;
    padding: 1px;
    border-radius: 8px;
    background: #f8f8f8;
}

.newgolf-product-detail-page .product-detail-image {
    width: 100%;
    aspect-ratio: 1;
    border: 0;
    object-fit: contain;
    background: #f8f8f8;
}

.newgolf-product-detail-page .detail-gallery-thumbs {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    gap: 8px;
    width: 100%;
    margin: 0 auto;
    padding: 10px 0;
    overflow-x: auto;
}

.newgolf-product-detail-page .detail-thumb {
    flex: 0 0 64px;
    display: block;
    width: 64px;
    height: 64px;
    padding: 0;
    border: 2px solid rgba(0, 0, 0, .04);
    border-radius: 5px;
    background: transparent;
    cursor: pointer;
    transition: border-color .25s ease, transform .25s ease;
}

.newgolf-product-detail-page .detail-thumb.active,
.newgolf-product-detail-page .detail-thumb:hover {
    border-color: #ff5500;
    transform: translateY(-2px);
}

.newgolf-product-detail-page .detail-thumb img {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 3px;
    object-fit: cover;
}

.newgolf-product-detail-page .additional_buttons {
    display: flex;
    justify-content: center;
    margin: 0 0 20px;
}

.newgolf-product-detail-page .copy-product-link {
    width: auto;
    min-width: 240px;
    padding: 12px 18px;
    border: 1px solid #d4af37;
    border-radius: 4px;
    background: #d4af37;
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    text-align: center;
    transition: background .25s ease, transform .25s ease, box-shadow .25s ease;
}

.newgolf-product-detail-page .copy-product-link:hover,
.newgolf-product-detail-page .copy-product-link.is-copied {
    background: #b8860b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, .3);
}

.newgolf-product-detail-page .panel.product_info {
    padding-top: 0;
    border-top: 0;
}

.newgolf-product-detail-page .product_category {
    margin-bottom: 10px;
    color: #666;
    font-size: 14px;
    font-weight: 500;
}

.newgolf-product-detail-page .product_title {
    margin: 0 0 15px;
    color: #222;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.3;
}

.newgolf-product-detail-page .product_price {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
}

.newgolf-product-detail-page .current_price {
    color: #ff5500;
    font-size: 24px;
    font-weight: 800;
}

.newgolf-product-detail-page .product_description,
.newgolf-product-detail-page .availability_info {
    margin-bottom: 20px;
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    background: #f9f9f9;
}

.newgolf-product-detail-page .description_title {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-size: 16px;
}

.newgolf-product-detail-page .description_text {
    margin: 0;
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

.newgolf-product-detail-page .availability_info ul {
    display: grid;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.newgolf-product-detail-page .availability_info li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.newgolf-product-detail-page .availability_info i {
    color: #ff5500;
}

.newgolf-product-detail-page .product-option-panel {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
}

.newgolf-product-detail-page .option_label {
    display: block;
    margin-bottom: 10px;
    color: #333;
    font-size: 14px;
    font-weight: 700;
}

.newgolf-product-detail-page .option-buttons-container {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.newgolf-product-detail-page .option-card {
    display: inline-grid;
    grid-template-columns: auto minmax(0, 1fr);
    min-width: min(100%, 190px);
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: #fff;
    color: #333;
}

.newgolf-product-detail-page .option-card:has(input:checked) {
    border-color: #744b22;
    background: #845527;
    color: #fff;
}

.newgolf-product-detail-page .option-card:has(input:checked) small {
    color: rgba(255, 255, 255, .78);
}

.newgolf-product-detail-page .option-card.is-disabled {
    border-color: #ddd;
    background: #fff;
    color: #999;
}

.newgolf-product-detail-page .quantity_section {
    display: grid;
    gap: 10px;
    margin: 0 0 20px;
    color: #333;
    font-size: 14px;
}

.newgolf-product-detail-page .quantity_value {
    width: 120px;
    min-height: 44px;
    border: 1px solid #d8d8d8;
    border-radius: 4px;
    text-align: center;
}

.newgolf-product-detail-page .price_box {
    margin: 0 0 20px;
}

.newgolf-product-detail-page .total_price_box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    width: 100%;
    padding: 20px 10px;
    border: 1px solid #c2a151;
    background: #fff;
}

.newgolf-product-detail-page .total_price_label,
.newgolf-product-detail-page .total_price {
    font-size: 1.5em;
    font-weight: 900;
}

.newgolf-product-detail-page .total_price {
    color: #ff5500;
}

.newgolf-product-detail-page .action_buttons {
    display: flex;
    gap: 15px;
    width: 100%;
    margin-bottom: 20px;
}

.newgolf-product-detail-page .action_btn {
    flex: 1;
    min-height: 54px;
    padding: 16px 30px;
    border: 0;
    border-radius: 4px;
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
    transition: transform .25s ease, box-shadow .25s ease;
}

.newgolf-product-detail-page .action_btn:hover {
    transform: translateY(-2px);
}

.newgolf-product-detail-page .action_btn:disabled {
    cursor: not-allowed;
    opacity: .55;
    transform: none;
}

.newgolf-product-detail-page .buy_now_btn {
    background: linear-gradient(135deg, #c6d4dc 0%, #7a9db0 100%);
}

.newgolf-product-detail-page .add_to_cart_btn {
    background: linear-gradient(135deg, #dcd0c6 0%, #c3a68e 100%);
}

.newgolf-product-detail-page .buy_now_btn:hover {
    box-shadow: 0 4px 12px rgba(198, 212, 220, .45);
}

.newgolf-product-detail-page .add_to_cart_btn:hover {
    box-shadow: 0 4px 12px rgba(220, 208, 198, .45);
}

.newgolf-product-detail-page .product_content_wrapper {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px 20px;
}

.newgolf-product-detail-page .bigtitle {
    display: block;
    width: 100%;
    margin: 40px 0 20px;
    padding: 0 40px 10px;
    border-bottom: 2px solid #a98f82;
    color: #333;
    font-size: 24px;
    font-weight: 800;
    text-align: center;
}

.newgolf-product-detail-page .product_d_info {
    width: 100%;
    margin: 0 auto 30px;
    padding: 0 40px;
    background: #fff;
}

.newgolf-product-detail-page .product_d_inner,
.newgolf-product-detail-page .product_info_content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    text-align: center;
}

.newgolf-product-detail-page .detail-image-stack {
    gap: 15px;
    padding: 20px 0;
}

.newgolf-product-detail-page .detail-image-stack img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    border: 0;
    object-fit: contain;
}

.newgolf-product-detail-page .tb_gosi {
    width: 100%;
    margin: 0 auto 20px;
    border-collapse: collapse;
    border-top: 1px solid rgba(0, 0, 0, .05);
}

.newgolf-product-detail-page .tb_gosi td {
    padding: 20px;
    border: 1px solid rgba(0, 0, 0, .05);
    background: #fff;
    color: #666;
    font-size: 1em;
    line-height: 1.7;
    text-align: left;
}

@media (max-width: 768px) {
    .newgolf-product-detail-page .shop-main {
        padding-top: 76px;
    }

    .newgolf-product-detail-page .product-detail-legacy .row {
        flex-direction: column;
        gap: 30px;
        padding: 15px;
    }

    .newgolf-product-detail-page .product_images,
    .newgolf-product-detail-page .product_info {
        width: 100%;
    }

    .newgolf-product-detail-page .product-gallery2 {
        margin: 0;
        padding: 0;
        border-radius: 0;
        background: transparent;
    }

    .newgolf-product-detail-page .product-detail-image {
        aspect-ratio: auto;
        object-fit: cover;
        background: transparent;
    }

    .newgolf-product-detail-page .detail-gallery-thumbs {
        gap: 5px;
        padding: 5px 0;
    }

    .newgolf-product-detail-page .detail-thumb {
        flex: 1 1 20%;
        width: 20%;
        height: auto;
        aspect-ratio: 1;
        min-width: 20%;
    }

    .newgolf-product-detail-page .product_title {
        font-size: 24px;
    }

    .newgolf-product-detail-page .current_price {
        font-size: 22px;
    }

    .newgolf-product-detail-page .option-card {
        min-width: 100%;
    }

    .newgolf-product-detail-page .action_buttons {
        flex-direction: column;
    }

    .newgolf-product-detail-page .product_content_wrapper,
    .newgolf-product-detail-page .product_d_info,
    .newgolf-product-detail-page .bigtitle {
        padding-right: 15px;
        padding-left: 15px;
    }

    .newgolf-product-detail-page .bigtitle {
        margin: 25px 0 15px;
        font-size: 20px;
    }
}

/* Reference mobile login page */
.newgolf-login-page {
    min-height: 100vh;
    overflow-x: hidden;
    background: #0f1728;
    color: #222;
    font-family: Arial, "Noto Sans KR", sans-serif;
}

.newgolf-login-page .shop-header,
.newgolf-login-page .mobile-dock {
    display: none;
}

.newgolf-login-page .shop-main {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
}

.login-reference-header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1003;
    width: 100%;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .1);
}

.login-reference-navbar {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 70px;
    padding: 15px 20px;
}

.login-reference-logo {
    position: absolute;
    left: 50%;
    color: #333;
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 1px;
    transform: translateX(-50%);
}

.login-reference-menu,
.login-reference-search {
    width: 40px;
    height: 40px;
    display: inline-grid;
    place-items: center;
    color: #333;
}

.login-reference-menu {
    position: relative;
}

.login-reference-menu span {
    position: absolute;
    left: 8px;
    width: 24px;
    height: 2px;
    background: #333;
    transition: transform .3s ease, opacity .2s ease;
}

.login-reference-menu span:nth-child(1) {
    transform: translateY(0) rotate(45deg);
}

.login-reference-menu span:nth-child(2) {
    opacity: 0;
}

.login-reference-menu span:nth-child(3) {
    transform: translateY(0) rotate(-45deg);
}

.login-reference-page {
    position: relative;
    min-height: 100vh;
    padding: 94px 18px 42px;
    display: grid;
    place-items: center;
    overflow: hidden;
}

.login-fullscreen-bg,
.login-video-overlay {
    position: fixed;
    inset: 0;
    pointer-events: none;
}

.login-fullscreen-bg {
    z-index: 0;
    background: #fff;
}

/* .login-fullscreen-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(24, 40, 72, .92) 0%, rgba(75, 108, 183, .86) 100%);
} */

.login-video-overlay {
    z-index: 1;
    /* background: rgba(0, 0, 0, .12); */
}

.login-content-container {
    position: relative;
    z-index: 2;
    width: min(500px, 100%);
    animation: loginFadeUp .55s ease both;
}

.container-login {
    width: 100%;
    display: flex;
    border-radius: 18px;
    overflow: hidden;
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .1);
    backdrop-filter: blur(10px);
}

.right-section {
    width: 100%;
    padding: 44px 36px;
    background: rgba(255, 255, 255, .96);
}

.form-header {
    margin-bottom: 34px;
    text-align: left;
}

.form-header h1 {
    margin: 0 0 10px;
    color: #182848;
    font-size: 32px;
    font-weight: 900;
    letter-spacing: 0;
}

.form-header p {
    margin: 0;
    color: #666;
    font-size: 16px;
}

.login-form-group {
    position: relative;
    margin-bottom: 25px;
}

.login-form-group label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-size: 15px;
    font-weight: 800;
}

.login-optional {
    display: inline-flex;
    align-items: center;
    min-height: 22px;
    margin-left: 6px;
    padding: 0 8px;
    border-radius: 999px;
    background: #eef2f8;
    color: #6b7280;
    font-size: 12px;
    font-weight: 900;
    vertical-align: 1px;
}

.input-with-icon {
    position: relative;
}

.input-with-icon > i {
    position: absolute;
    top: 50%;
    left: 15px;
    color: #4b6cb7;
    font-size: 18px;
    transform: translateY(-50%);
}

.login-form-group input {
    width: 100%;
    min-height: 56px;
    padding: 16px 52px 16px 50px;
    border: 2px solid #e1e5ee;
    border-radius: 10px;
    background: #f8f9fa;
    color: #222;
    font-size: 16px;
    transition: border-color .3s ease, background-color .3s ease, box-shadow .3s ease;
}

.login-form-group input:focus {
    border-color: #4b6cb7;
    background: #fff;
    outline: none;
    box-shadow: 0 0 0 3px rgba(75, 108, 183, .1);
}

.login-form-group input::placeholder {
    color: #aaa;
}

.login-form-group.error input {
    border-color: #e74c3c;
}

.register-spam-row {
    display: grid;
    grid-template-columns: 136px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
}

.register-spam-image {
    width: 136px;
    min-height: 52px;
    padding: 0;
    border: 2px solid #e1e5ee;
    border-radius: 13px;
    overflow: hidden;
    background: #f8fafc;
    color: #333;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .92);
    transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}

.register-spam-image:hover {
    border-color: #4b6cb7;
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(75, 108, 183, .12);
}

.register-spam-image img {
    display: block;
    width: 100%;
    height: 52px;
    object-fit: cover;
}

.password-toggle {
    position: absolute;
    top: 50%;
    right: 15px;
    width: 34px;
    height: 34px;
    display: inline-grid;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: transparent;
    color: #777;
    cursor: pointer;
    font-size: 16px;
    transform: translateY(-50%);
    transition: color .2s ease, background-color .2s ease;
}

.password-toggle:hover,
.password-toggle:focus-visible {
    background: rgba(75, 108, 183, .1);
    color: #4b6cb7;
    outline: none;
}

.login-helper-row {
    margin: -5px 0 20px;
    text-align: right;
}

.login-helper-row a {
    color: #4b6cb7;
    font-size: 14px;
    text-decoration: none;
}

.login-helper-row a:hover {
    color: #182848;
    text-decoration: underline;
}

.login-submit-btn,
.login-register-btn,
.login-guest-buy-btn {
    width: 100%;
    min-height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border: 0;
    border-radius: 10px;
    color: #fff;
    font-size: 16px;
    font-weight: 900;
    cursor: pointer;
    transition: transform .3s ease, box-shadow .3s ease, background .3s ease;
}

.login-submit-btn {
    background: linear-gradient(to right, #4b6cb7, #182848);
}

.login-submit-btn:hover {
    background: linear-gradient(to right, #3a5aa5, #101f3d);
    box-shadow: 0 5px 15px rgba(75, 108, 183, .3);
    transform: translateY(-2px);
}

.login-divider {
    position: relative;
    margin: 28px 0 20px;
    text-align: center;
}

.login-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    left: 0;
    height: 1px;
    background: #e1e5ee;
}

.login-divider span {
    position: relative;
    z-index: 1;
    padding: 0 14px;
    background: rgba(255, 255, 255, .96);
    color: #777;
    font-size: 14px;
}

.login-register-btn {
    background: linear-gradient(to right, #2ecc71, #27ae60);
}

.login-register-btn:hover {
    box-shadow: 0 5px 15px rgba(46, 204, 113, .3);
    transform: translateY(-2px);
}

.login-guest-buy-btn {
    margin-top: 12px;
    background: linear-gradient(to right, #333, #111);
}

.login-guest-buy-btn:hover {
    box-shadow: 0 5px 15px rgba(51, 51, 51, .22);
    transform: translateY(-2px);
}

.login-error {
    margin: 0 0 18px;
    padding: 12px 14px;
    border: 1px solid rgba(231, 76, 60, .28);
    border-radius: 10px;
    background: rgba(231, 76, 60, .08);
    color: #c0392b;
    font-size: 14px;
    font-weight: 800;
}

.login-success {
    margin: 0 0 18px;
    padding: 12px 14px;
    border: 1px solid rgba(25, 135, 84, .28);
    border-radius: 10px;
    background: rgba(25, 135, 84, .08);
    color: #176a3a;
    font-size: 14px;
    font-weight: 800;
}

.newgolf-profile-edit-page .login-content-container {
    width: min(760px, 100%);
}

.newgolf-profile-edit-page .container-login {
    box-shadow: none;
}

.newgolf-profile-edit-page .right-section {
    padding: 62px 54px;
}

.newgolf-profile-edit-page .profile-form-header {
    margin: 0;
}

.newgolf-profile-edit-page .profile-form-header h1 {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.profile-member-info {
    margin-bottom: 48px;
}

.profile-member-info h2 {
    margin: 0 0 24px;
    color: #3a3a3a;
    font-size: 22px;
    font-weight: 900;
    letter-spacing: 0;
}

.profile-member-card {
    min-height: 96px;
    display: flex;
    align-items: center;
    padding: 22px 28px;
    border: 3px solid #e1e5ee;
    border-radius: 16px;
    background: #f8f9fa;
    color: #444;
    font-size: 24px;
    font-weight: 800;
}

.newgolf-profile-edit-page .login-form-group {
    margin-bottom: 38px;
}

.newgolf-profile-edit-page .login-form-group label {
    margin-bottom: 20px;
    color: #3a3a3a;
    font-size: 22px;
    font-weight: 900;
}

.newgolf-profile-edit-page .login-form-group input {
    min-height: 82px;
    padding-left: 80px;
    border-width: 3px;
    border-radius: 16px;
    font-size: 22px;
    font-weight: 800;
}

.newgolf-profile-edit-page .input-with-icon > i {
    left: 28px;
    font-size: 28px;
}

.newgolf-profile-edit-page .profile-password-field .password-toggle {
    right: -54px;
    width: 42px;
    height: 42px;
    color: #4b6cb7;
    font-size: 24px;
}

.newgolf-profile-edit-page .profile-readonly-field input[readonly] {
    background: #ddd;
    color: #111;
    cursor: default;
}

.newgolf-login-page .live-footer {
    display: none;
}

.newgolf-login-page .mobile-shop-footer {
    position: relative;
    z-index: 2;
    padding-bottom: 40px;
}

@keyframes loginFadeUp {
    from {
        opacity: 0;
        transform: translateY(18px) scale(.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (max-width: 768px) {
    .login-reference-navbar {
        min-height: 70px;
        padding: 15px;
    }

    .login-reference-logo {
        font-size: 24px;
    }

    .login-reference-search svg {
        width: 24px;
        height: 24px;
    }

    .login-reference-page {
        padding: 90px 16px 38px;
    }

    .right-section {
        padding: 34px 22px;
    }

    .newgolf-profile-edit-page .login-content-container {
        width: min(500px, 100%);
    }

    .newgolf-profile-edit-page .right-section {
        padding: 34px 22px;
    }

    .newgolf-profile-edit-page .profile-member-info {
        margin-bottom: 34px;
    }

    .newgolf-profile-edit-page .profile-member-info h2,
    .newgolf-profile-edit-page .login-form-group label {
        font-size: 18px;
    }

    .newgolf-profile-edit-page .profile-member-card {
        min-height: 72px;
        padding: 18px 20px;
        border-radius: 14px;
        font-size: 18px;
    }

    .newgolf-profile-edit-page .login-form-group {
        margin-bottom: 28px;
    }

    .newgolf-profile-edit-page .login-form-group input {
        min-height: 62px;
        padding-left: 58px;
        border-width: 2px;
        border-radius: 12px;
        font-size: 16px;
    }

    .newgolf-profile-edit-page .input-with-icon > i {
        left: 20px;
        font-size: 20px;
    }

    .newgolf-profile-edit-page .profile-password-field .password-toggle {
        right: 14px;
        width: 34px;
        height: 34px;
        font-size: 17px;
    }

    .form-header h1 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .container-login {
        border-radius: 14px;
    }

    .right-section {
        padding: 30px 20px;
    }

    .form-header {
        margin-bottom: 28px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .login-content-container,
    .login-submit-btn,
    .login-register-btn {
        animation: none !important;
        transition: none !important;
    }
}

/* Reference member loss page */
.newgolf-member-loss-page {
    min-height: 100vh;
    margin: 0;
    background: #fff;
    color: #000;
    font-family: Arial, "Noto Sans KR", sans-serif;
}

.newgolf-member-loss-page .shop-header,
.newgolf-member-loss-page .mobile-dock {
    display: none;
}

.newgolf-member-loss-page .shop-main {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
}

.member-loss-page {
    width: 100%;
    min-height: 100vh;
    background: #fff;
}

.member-loss-page h1 {
    min-height: 73px;
    display: grid;
    place-items: center;
    margin: 0;
    background: #000;
    color: #fff;
    font-size: 25px;
    font-weight: 700;
    letter-spacing: 0;
}

.newgolf-member-loss-popup .member-loss-page {
    min-height: 300px;
    overflow: hidden;
}

.newgolf-member-loss-popup .member-loss-page h1 {
    min-height: 58px;
    font-size: 22px;
}

.newgolf-member-loss-popup .member-loss-form {
    padding: 12px 14px;
}

.newgolf-member-loss-popup .member-loss-fields {
    margin-bottom: 10px;
    padding: 4px 8px;
}

.newgolf-member-loss-popup .member-loss-row {
    min-height: 36px;
}

.newgolf-member-loss-popup .member-loss-submit {
    margin: 6px auto 10px;
}

.newgolf-member-loss-popup .member-loss-links {
    gap: 2px;
    padding-left: 6px;
}

.newgolf-member-loss-popup .member-loss-link {
    min-height: 22px;
}

.member-loss-form {
    width: 100%;
    padding: 20px;
}

.member-loss-message {
    width: min(402px, calc(100% - 76px));
    margin: 0 auto 14px;
    padding: 10px 12px;
    border: 1px solid #d8d8d8;
    background: #f5f5f5;
    color: #222;
    font-size: 13px;
    line-height: 1.45;
    text-align: center;
}

.member-loss-message.success {
    border-color: #b7d9bd;
    background: #eef8f0;
    color: #176a3a;
}

.member-loss-message.error {
    border-color: #efb8b2;
    background: #fff0ee;
    color: #b42318;
}

.member-loss-fields {
    width: min(478px, 100%);
    margin: 0 auto 20px;
    padding: 11px;
}

.member-loss-row {
    display: grid;
    grid-template-columns: 62px minmax(0, 1fr);
    align-items: center;
    min-height: 40px;
}

.member-loss-row label {
    color: #000;
    font-size: 16px;
    font-weight: 400;
}

.member-loss-row input {
    box-sizing: border-box;
    width: 150px;
    height: 34px;
    min-height: 34px;
    padding: 6px 8px;
    border: 1px solid #d8d8d8;
    border-radius: 0;
    background: #f5f5f5;
    color: #000;
    font-size: 14px;
}

.member-loss-row input[type="email"] {
    width: 250px;
    max-width: 100%;
}

.member-loss-row input:focus {
    border-color: #555;
    background: #fff;
    outline: 0;
}

.member-loss-submit {
    width: min(402px, calc(100% - 76px));
    min-height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px auto 24px;
    border: 1px solid #2e2e2e;
    border-radius: 0;
    background: #555;
    color: #fff;
    font-size: 15px;
    font-weight: 400;
    cursor: pointer;
}

.member-loss-submit:hover,
.member-loss-submit:focus-visible {
    background: #333;
    outline: 0;
}

.member-loss-links {
    display: grid;
    gap: 5px;
    width: min(478px, 100%);
    margin: 0 auto;
}

.member-loss-link {
    min-height: 28px;
    display: flex;
    align-items: center;
    gap: 6px;
    background: #fff;
    color: #6a6a6a;
    font-size: 11px;
    text-decoration: none;
}

.member-loss-link strong {
    color: #6a6a6a;
    font-size: 11px;
    font-weight: 400;
}

.member-loss-link span {
    color: #6a6a6a;
    font-size: 11px;
}

.member-loss-link:hover strong {
    text-decoration: underline;
}

@media (max-width: 480px) {
    .member-loss-form {
        padding: 20px;
    }

    .member-loss-fields {
        padding: 11px;
    }

    .member-loss-submit,
    .member-loss-message {
        width: calc(100% - 76px);
    }
}

/* Reference mobile cart and checkout pages */
.newgolf-cart-page,
.newgolf-checkout-page {
    min-height: 100vh;
    overflow-x: hidden;
    background: #fff;
    color: #333;
    font-family: Arial, "Noto Sans KR", sans-serif;
}

.newgolf-cart-page .shop-header,
.newgolf-cart-page .mobile-dock,
.newgolf-checkout-page .shop-header,
.newgolf-checkout-page .mobile-dock {
    display: none;
}

.newgolf-cart-page .shop-main,
.newgolf-checkout-page .shop-main {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
}

.newgolf-cart-page .mobile-shop-header,
.newgolf-checkout-page .mobile-shop-header {
    background: #fff;
    color: #333;
    box-shadow: none;
}

.newgolf-cart-page .mobile-shop-logo,
.newgolf-cart-page .mobile-shop-nav-menu-pc li a,
.newgolf-cart-page .icon-link,
.newgolf-cart-page .mobile-shop-icon-link,
.newgolf-checkout-page .mobile-shop-logo,
.newgolf-checkout-page .mobile-shop-nav-menu-pc li a,
.newgolf-checkout-page .icon-link,
.newgolf-checkout-page .mobile-shop-icon-link {
    color: #333;
    text-shadow: none;
}

.newgolf-cart-page .mobile-shop-hamburger .bar,
.newgolf-checkout-page .mobile-shop-hamburger .bar {
    background: #333;
    box-shadow: none;
}

.mobile-cart-page,
.mobile-checkout-page {
    width: min(100%, 1440px);
    min-height: 520px;
    margin: 0 auto;
    padding: 122px 20px 120px;
}

.mobile-cart-title,
.mobile-checkout-title {
    width: min(500px, 100%);
    margin: 0 auto 40px;
    text-align: center;
    animation: mobileShopFadeUp .45s ease both;
}

.mobile-cart-title h1,
.mobile-checkout-title h1 {
    margin: 0 0 12px;
    color: #333;
    font-size: 36px;
    font-weight: 900;
    letter-spacing: 0;
}

.mobile-cart-title p,
.mobile-checkout-title p {
    margin: 0;
    color: #666;
    font-size: 16px;
}

.mobile-cart-alert,
.mobile-checkout-alert {
    width: min(980px, 100%);
    margin: 0 auto 18px;
    padding: 13px 15px;
    border: 1px solid rgba(231, 76, 60, .25);
    border-radius: 10px;
    background: rgba(231, 76, 60, .08);
    color: #c0392b;
    font-size: 14px;
    font-weight: 800;
}

.mobile-cart-empty {
    width: calc(100% - 44px);
    margin: 70px auto 190px;
    color: #333;
    font-size: 16px;
    text-align: left;
}

.mobile-cart-list {
    width: min(980px, 100%);
    margin: 0 auto;
    display: grid;
    gap: 12px;
}

.mobile-cart-item {
    position: relative;
    display: grid;
    grid-template-columns: 34px 96px minmax(0, 1fr) 132px 130px 44px;
    align-items: center;
    gap: 16px;
    min-height: 130px;
    padding: 18px 16px;
    border-bottom: 1px solid #eee;
    background: #fff;
    animation: mobileShopFadeUp .45s ease both;
}

.mobile-cart-item-check input,
.mobile-cart-check-all input {
    width: 18px;
    height: 18px;
    accent-color: #333;
}

.mobile-cart-thumb {
    display: block;
    overflow: hidden;
    background: #f5f5f5;
}

.mobile-cart-thumb img {
    width: 96px;
    aspect-ratio: 1;
    display: block;
    object-fit: cover;
    transition: transform .25s ease;
}

.mobile-cart-thumb:hover img {
    transform: scale(1.04);
}

.mobile-cart-info {
    min-width: 0;
    display: grid;
    gap: 6px;
}

.mobile-cart-name {
    color: #333;
    font-size: 17px;
    font-weight: 900;
}

.mobile-cart-option,
.mobile-cart-unit {
    color: #777;
    font-size: 14px;
}

.mobile-cart-qty {
    display: grid;
    grid-template-columns: 70px 54px;
    gap: 6px;
}

.mobile-cart-qty input {
    min-height: 38px;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 0;
    text-align: center;
}

.mobile-cart-qty button,
.mobile-cart-delete button,
.mobile-cart-action {
    min-height: 38px;
    border: 1px solid #ddd;
    border-radius: 0;
    background: #fff;
    color: #333;
    font-size: 14px;
    font-weight: 800;
    transition: border-color .2s ease, background-color .2s ease, color .2s ease, transform .2s ease;
}

.mobile-cart-qty button:hover,
.mobile-cart-delete button:hover,
.mobile-cart-action:hover {
    border-color: #333;
    transform: translateY(-1px);
}

.mobile-cart-line-total {
    color: #333;
    font-size: 18px;
    font-weight: 900;
    text-align: right;
}

.mobile-cart-delete button {
    width: 38px;
    display: inline-grid;
    place-items: center;
    color: #999;
}

.mobile-cart-actionbar {
    position: sticky;
    bottom: 66px;
    z-index: 900;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
    min-height: 54px;
    margin: 42px 0 0;
    padding: 7px 20px;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
    background: rgba(255, 255, 255, .96);
    backdrop-filter: blur(10px);
}

.mobile-cart-check-all {
    margin-right: auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #333;
    font-size: 15px;
    font-weight: 800;
}

.mobile-cart-total {
    display: inline-flex;
    align-items: baseline;
    gap: 8px;
    color: #333;
    white-space: nowrap;
}

.mobile-cart-total strong {
    color: #333;
    font-size: 20px;
    font-weight: 900;
}

.mobile-cart-total em {
    color: #999;
    font-size: 12px;
    font-style: normal;
}

.mobile-cart-bulk-form {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.mobile-cart-action {
    min-width: 82px;
    padding: 0 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.mobile-cart-action-primary {
    min-width: 112px;
    border-color: #ff6600;
    background: #ff6600;
    color: #fff;
}

.mobile-cart-action-primary:hover {
    border-color: #e75d00;
    background: #e75d00;
    color: #fff;
}

.mobile-cart-summary {
    width: min(980px, 100%);
    margin: 18px auto 0;
    padding: 22px 0 0;
}

.mobile-cart-summary dl,
.mobile-checkout-payment dl {
    margin: 0;
    display: grid;
    gap: 10px;
}

.mobile-cart-summary dl div,
.mobile-checkout-payment dl div {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    color: #666;
    font-size: 15px;
}

.mobile-cart-summary dt,
.mobile-cart-summary dd,
.mobile-checkout-payment dt,
.mobile-checkout-payment dd {
    margin: 0;
}

.mobile-cart-summary .total,
.mobile-checkout-payment .total {
    padding-top: 12px;
    border-top: 1px solid #eee;
    color: #333;
    font-size: 20px;
    font-weight: 900;
}

.mobile-checkout-bank {
    margin: 16px 0 0;
    padding-top: 14px;
    border-top: 1px solid #eee;
}

.mobile-checkout-layout {
    width: min(980px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    align-items: start;
    gap: 28px;
}

.mobile-checkout-form,
.mobile-checkout-summary {
    min-width: 0;
    display: grid;
    gap: 18px;
}

.mobile-checkout-section,
.mobile-checkout-addresses {
    margin: 0;
    padding: 24px;
    border: 1px solid #eee;
    background: #fff;
    box-shadow: 0 12px 28px rgba(0, 0, 0, .04);
}

.mobile-checkout-section h2,
.mobile-checkout-addresses legend {
    margin: 0 0 18px;
    color: #333;
    font-size: 20px;
    font-weight: 900;
}

.mobile-checkout-addresses legend {
    padding: 0 8px;
}

.mobile-checkout-guide {
    margin: -6px 0 18px;
    padding: 14px 16px;
    border: 1px solid #f0f0f0;
    background: #fafafa;
    color: #777;
    font-size: 14px;
    font-weight: 800;
}

.mobile-checkout-consent label {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    color: #333;
    cursor: pointer;
}

.mobile-checkout-consent input,
.mobile-checkout-same input {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: #ff6600;
}

.mobile-checkout-consent span {
    display: grid;
    gap: 5px;
}

.mobile-checkout-consent strong {
    color: #333;
    font-size: 16px;
    font-weight: 900;
}

.mobile-checkout-consent small,
.mobile-checkout-bank {
    color: #777;
    font-size: 13px;
    font-weight: 700;
}

.mobile-checkout-heading-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin: 0 0 18px;
}

.mobile-checkout-heading-row h2 {
    margin: 0;
}

.mobile-checkout-same {
    display: inline-flex;
    align-items: flex-start;
    gap: 8px;
    max-width: 320px;
    color: #666;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.45;
    cursor: pointer;
}

.mobile-checkout-address-option {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 13px 0;
    border-top: 1px solid #f0f0f0;
    color: #333;
}

.mobile-checkout-address-option:first-of-type {
    border-top: 0;
}

.mobile-checkout-address-option input {
    width: 18px;
    height: 18px;
    margin-top: 3px;
    accent-color: #ff6600;
}

.mobile-checkout-address-option span {
    display: grid;
    gap: 5px;
}

.mobile-checkout-address-option small {
    color: #777;
}

.mobile-checkout-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.mobile-checkout-grid-wide {
    grid-column: 1 / -1;
}

.mobile-checkout-grid label {
    display: grid;
    gap: 8px;
    color: #333;
    font-size: 15px;
    font-weight: 900;
}

.mobile-checkout-grid em {
    color: #ff6600;
    font-style: normal;
}

.mobile-checkout-grid input {
    width: 100%;
    min-height: 52px;
    padding: 14px 15px;
    border: 1px solid #ddd;
    border-radius: 0;
    background: #fff;
    color: #222;
    font-size: 16px;
}

.mobile-checkout-grid input:focus {
    border-color: #333;
    outline: none;
    box-shadow: 0 0 0 3px rgba(51, 51, 51, .08);
}

.mobile-checkout-items {
    display: grid;
    gap: 14px;
}

.mobile-checkout-item {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 13px;
    padding-bottom: 14px;
    border-bottom: 1px solid #f0f0f0;
}

.mobile-checkout-item:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.mobile-checkout-item img {
    width: 72px;
    aspect-ratio: 1;
    object-fit: cover;
    background: #f5f5f5;
}

.mobile-checkout-item div {
    min-width: 0;
    display: grid;
    gap: 5px;
}

.mobile-checkout-item strong {
    color: #333;
    font-size: 15px;
    font-weight: 900;
}

.mobile-checkout-item span,
.mobile-checkout-item small {
    color: #777;
    font-size: 13px;
}

.mobile-checkout-item em {
    grid-column: 2;
    color: #333;
    font-size: 15px;
    font-style: normal;
    font-weight: 900;
}

.mobile-checkout-submitbar {
    z-index: 900;
    width: min(980px, calc(100% - 40px));
    min-height: 68px;
    margin: 28px auto 0;
    padding: 9px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    background: rgba(255, 255, 255, .96);
    border: 1px solid #eee;
    box-shadow: 0 -10px 28px rgba(0, 0, 0, .08);
    backdrop-filter: blur(10px);
}

.mobile-checkout-submitbar span {
    padding-left: 12px;
    color: #333;
    font-size: 20px;
    font-weight: 900;
}

.mobile-checkout-submitbar button {
    min-width: 180px;
    min-height: 50px;
    border: 0;
    border-radius: 0;
    background: #ff6600;
    color: #fff;
    font-size: 16px;
    font-weight: 900;
    transition: background-color .2s ease, transform .2s ease;
}

.mobile-checkout-submitbar button:hover {
    background: #e75d00;
    transform: translateY(-1px);
}

@keyframes mobileShopFadeUp {
    from {
        opacity: 0;
        transform: translateY(14px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 980px) {
    .mobile-cart-page,
    .mobile-checkout-page {
        padding: 102px 12px 118px;
    }

    .mobile-cart-title,
    .mobile-checkout-title {
        margin-bottom: 30px;
    }

    .mobile-cart-title h1,
    .mobile-checkout-title h1 {
        font-size: 30px;
    }

    .mobile-cart-item {
        grid-template-columns: 28px 84px minmax(0, 1fr) 92px 38px;
        gap: 11px;
        padding: 14px 8px;
    }

    .mobile-cart-thumb img {
        width: 84px;
    }

    .mobile-cart-qty {
        grid-column: 3 / 4;
        grid-row: 2;
        grid-template-columns: 68px 50px;
    }

    .mobile-cart-line-total {
        grid-column: 4;
        grid-row: 1 / 3;
        font-size: 15px;
    }

    .mobile-cart-delete {
        grid-column: 5;
        grid-row: 1 / 3;
    }

    .mobile-cart-actionbar {
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 9px;
        padding: 10px 12px;
    }

    .mobile-cart-bulk-form {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 7px;
    }

    .mobile-cart-action {
        width: 100%;
        min-width: 0;
        padding: 0 8px;
        font-size: 13px;
    }

    .mobile-checkout-layout {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .mobile-checkout-summary {
        order: -1;
    }
}

@media (max-width: 560px) {
    .mobile-cart-page,
    .mobile-checkout-page {
        padding-inline: 0;
    }

    .mobile-cart-title,
    .mobile-checkout-title {
        padding: 0 18px;
    }

    .mobile-cart-empty {
        width: calc(100% - 32px);
        margin-bottom: 150px;
    }

    .mobile-cart-list,
    .mobile-cart-summary,
    .mobile-checkout-layout {
        width: 100%;
    }

    .mobile-cart-item {
        grid-template-columns: 26px 76px minmax(0, 1fr) 34px;
        gap: 9px;
        min-height: 120px;
        padding: 14px 12px;
    }

    .mobile-cart-thumb img {
        width: 76px;
    }

    .mobile-cart-name {
        font-size: 15px;
    }

    .mobile-cart-option,
    .mobile-cart-unit {
        font-size: 12px;
    }

    .mobile-cart-qty {
        grid-column: 2 / 4;
        grid-row: 2;
        width: 126px;
    }

    .mobile-cart-line-total {
        grid-column: 3;
        grid-row: 2;
        align-self: center;
        padding-left: 130px;
        font-size: 14px;
        text-align: left;
    }

    .mobile-cart-delete {
        grid-column: 4;
        grid-row: 1 / 3;
    }

    .mobile-cart-actionbar {
        bottom: 66px;
        margin-top: 24px;
    }

    .mobile-cart-total {
        width: 100%;
        justify-content: flex-end;
    }

    .mobile-cart-summary {
        padding: 18px 14px 0;
    }

    .mobile-checkout-section,
    .mobile-checkout-addresses {
        padding: 20px 16px;
        border-right: 0;
        border-left: 0;
        box-shadow: none;
    }

    .mobile-checkout-grid {
        grid-template-columns: 1fr;
    }

    .mobile-checkout-heading-row {
        display: grid;
        gap: 12px;
    }

    .mobile-checkout-same {
        max-width: none;
    }

    .mobile-checkout-submitbar {
        width: 100%;
        border-right: 0;
        border-left: 0;
    }

    .mobile-checkout-submitbar span {
        font-size: 17px;
    }

    .mobile-checkout-submitbar button {
        min-width: 138px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .mobile-cart-title,
    .mobile-checkout-title,
    .mobile-cart-item,
    .mobile-cart-thumb img,
    .mobile-checkout-submitbar button {
        animation: none !important;
        transition: none !important;
    }
}

/* Cart page product-state parity with m.newgolf.net */
.newgolf-cart-page .mobile-cart-page {
    width: 100%;
    max-width: none;
    min-height: calc(100vh - 78px);
    padding: 136px 36px 150px;
}

.newgolf-cart-page .mobile-cart-title,
.newgolf-cart-page .mobile-cart-summary,
.newgolf-cart-page .mobile-shop-footer {
    display: none;
}

.newgolf-cart-page .mobile-cart-list {
    width: 100%;
    max-width: none;
    margin: 0;
    display: grid;
    gap: 22px;
}

.newgolf-cart-page .mobile-cart-item {
    min-height: 218px;
    display: grid;
    grid-template-columns: 128px minmax(220px, 1fr) auto auto auto;
    grid-template-areas: "media info qty delete price";
    align-items: center;
    column-gap: 28px;
    padding: 38px 32px;
    border: 1px solid #e1e5ee;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 3px 10px rgba(15, 23, 42, .08);
}

.newgolf-cart-page .mobile-cart-product-media {
    grid-area: media;
    display: grid;
    justify-items: center;
    gap: 24px;
}

.newgolf-cart-page .mobile-cart-thumb {
    border-radius: 8px;
    background: #f4f6f8;
    box-shadow: none;
}

.newgolf-cart-page .mobile-cart-thumb img {
    width: 88px;
    height: 88px;
    object-fit: cover;
    border-radius: 8px;
}

.newgolf-cart-page .mobile-cart-item-check {
    display: inline-grid;
    place-items: center;
    width: 30px;
    height: 30px;
}

.newgolf-cart-page .mobile-cart-item-check input,
.newgolf-cart-page .mobile-cart-check-all input {
    width: 20px;
    height: 20px;
    margin: 0;
    border: 2px solid #9ca3af;
    border-radius: 3px;
    accent-color: #333;
}

.newgolf-cart-page .mobile-cart-info {
    grid-area: info;
    align-self: start;
    padding-top: 8px;
    display: grid;
    gap: 42px;
}

.newgolf-cart-page .mobile-cart-name {
    color: #1f2937;
    font-size: 18px;
    font-weight: 900;
}

.newgolf-cart-page .mobile-cart-option {
    color: #6b7280;
    font-size: 15px;
    font-weight: 800;
}

.newgolf-cart-page .mobile-cart-unit {
    display: none;
}

.newgolf-cart-page .mobile-cart-qty {
    grid-area: qty;
    display: grid;
    grid-template-columns: 44px 68px 44px;
    gap: 8px;
    align-items: center;
}

.newgolf-cart-page .mobile-cart-qty button,
.newgolf-cart-page .mobile-cart-qty input {
    width: 100%;
    min-height: 42px;
    padding: 0;
    border: 1px solid #d9dee7;
    border-radius: 10px;
    background: #fff;
    color: #222;
    font-size: 18px;
    font-weight: 900;
    text-align: center;
    box-shadow: 0 1px 2px rgba(15, 23, 42, .04);
}

.newgolf-cart-page .mobile-cart-qty button:hover {
    border-color: #c6cbd5;
    background: #f8fafc;
    transform: none;
}

.newgolf-cart-page .mobile-cart-delete {
    grid-area: delete;
}

.newgolf-cart-page .mobile-cart-delete button {
    width: auto;
    min-width: 66px;
    min-height: 42px;
    padding: 0 18px;
    border: 1px solid #d9dee7;
    border-radius: 10px;
    background: #fff;
    color: #ff454d;
    font-size: 14px;
    font-weight: 900;
}

.newgolf-cart-page .mobile-cart-delete button:hover {
    border-color: #ff454d;
    background: #fff7f7;
    transform: none;
}

.newgolf-cart-page .mobile-cart-line-total {
    grid-area: price;
    min-width: 126px;
    color: #ff454d;
    font-size: 24px;
    font-weight: 950;
    text-align: right;
    white-space: nowrap;
}

.newgolf-cart-page .mobile-cart-actionbar {
    position: fixed;
    right: 0;
    bottom: 66px;
    left: 0;
    z-index: 950;
    min-height: 86px;
    margin: 0;
    padding: 14px 36px;
    border: 0;
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 -8px 24px rgba(15, 23, 42, .08);
    backdrop-filter: blur(12px);
}

.newgolf-cart-page .mobile-cart-check-all {
    min-height: 54px;
    padding: 0 16px;
    border: 1px solid #e1e5ee;
    border-radius: 8px;
    background: #fff;
    color: #333;
    box-shadow: 0 2px 5px rgba(15, 23, 42, .04);
}

.newgolf-cart-page .mobile-cart-total {
    margin-left: auto;
}

.newgolf-cart-page .mobile-cart-total span {
    color: #6b7280;
    font-weight: 900;
}

.newgolf-cart-page .mobile-cart-total strong {
    color: #ff454d;
    font-size: 28px;
    font-weight: 950;
}

.newgolf-cart-page .mobile-cart-total em {
    display: none;
}

.newgolf-cart-page .mobile-cart-bulk-form {
    padding: 10px;
    border-radius: 12px;
    background: #f1f5f9;
    box-shadow: 0 8px 22px rgba(15, 23, 42, .12);
}

.newgolf-cart-page .mobile-cart-action {
    min-width: 104px;
    min-height: 54px;
    padding: 0 20px;
    border: 0;
    border-radius: 8px;
    background: #fff;
    color: #ff454d;
    font-size: 16px;
    font-weight: 950;
    box-shadow: none;
}

.newgolf-cart-page .mobile-cart-action-selected {
    background: #5247d8;
    color: #fff;
}

.newgolf-cart-page .mobile-cart-action-primary {
    min-width: 148px;
    background: #ef3f43;
    color: #fff;
}

.newgolf-cart-page .mobile-cart-action-primary span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 34px;
    height: 26px;
    margin-left: 5px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .24);
    color: #fff;
}

.newgolf-cart-page .mobile-cart-action:hover {
    transform: none;
    filter: brightness(.98);
}

@media (max-width: 900px) {


    .newgolf-cart-page .mobile-cart-page {
        padding: 172px 10px 128px;
    }

    .newgolf-cart-page .mobile-cart-list {
        gap: 34px;
    }

    .newgolf-cart-page .mobile-cart-item {
        min-height: 246px;
        grid-template-columns: 156px minmax(0, 1fr);
        grid-template-rows: auto auto auto;
        grid-template-areas:
            "media info"
            "media qty"
            "media price";
        column-gap: 26px;
        row-gap: 18px;
        padding: 56px 34px 50px;
        border-radius: 18px;
    }

    .newgolf-cart-page .mobile-cart-product-media {
        align-self: start;
        gap: 34px;
    }

    .newgolf-cart-page .mobile-cart-thumb img {
        width: 156px;
        height: 156px;
    }

    .newgolf-cart-page .mobile-cart-info {
        align-self: start;
        padding-top: 12px;
        gap: 52px;
    }

    .newgolf-cart-page .mobile-cart-name {
        font-size: 26px;
    }

    .newgolf-cart-page .mobile-cart-option {
        font-size: 20px;
    }

    .newgolf-cart-page .mobile-cart-qty {
        justify-self: end;
        grid-template-columns: 72px 120px 72px;
        gap: 0;
    }

    .newgolf-cart-page .mobile-cart-qty button,
    .newgolf-cart-page .mobile-cart-qty input {
        min-height: 72px;
        border-radius: 36px;
        font-size: 30px;
    }

    .newgolf-cart-page .mobile-cart-qty input {
        border-radius: 10px;
        margin: 0 2px;
    }

    .newgolf-cart-page .mobile-cart-delete {
        grid-area: qty;
        justify-self: end;
        align-self: center;
        transform: translateX(144px);
    }

    .newgolf-cart-page .mobile-cart-delete button {
        min-width: 112px;
        min-height: 72px;
        border-color: #ff454d;
        border-radius: 36px;
        color: #ff454d;
        font-size: 24px;
    }

    .newgolf-cart-page .mobile-cart-line-total {
        justify-self: end;
        min-width: 0;
        font-size: 32px;
    }

    .newgolf-cart-page .mobile-cart-actionbar {
        bottom: 66px;
        min-height: 86px;
        padding: 10px 12px;
    }
}

@media (max-width: 560px) {
    .newgolf-cart-page .mobile-cart-page {
        padding: 126px 10px 126px;
    }

    .newgolf-cart-page .mobile-cart-list {
        gap: 22px;
    }

    .newgolf-cart-page .mobile-cart-item {
        min-height: 178px;
        grid-template-columns: 86px minmax(0, 1fr);
        column-gap: 18px;
        row-gap: 12px;
        padding: 28px 18px 26px;
    }

    .newgolf-cart-page .mobile-cart-product-media {
        gap: 28px;
    }

    .newgolf-cart-page .mobile-cart-thumb img {
        width: 72px;
        height: 72px;
    }

    .newgolf-cart-page .mobile-cart-item-check input {
        width: 19px;
        height: 19px;
    }

    .newgolf-cart-page .mobile-cart-info {
        gap: 30px;
        padding-top: 3px;
    }

    .newgolf-cart-page .mobile-cart-name {
        font-size: 17px;
    }

    .newgolf-cart-page .mobile-cart-option {
        font-size: 14px;
    }

    .newgolf-cart-page .mobile-cart-qty {
        grid-area: qty;
        justify-self: start;
        grid-template-columns: 36px 50px 36px;
    }

    .newgolf-cart-page .mobile-cart-qty button,
    .newgolf-cart-page .mobile-cart-qty input {
        min-height: 42px;
        font-size: 18px;
    }

    .newgolf-cart-page .mobile-cart-delete {
        grid-area: qty;
        justify-self: end;
        transform: none;
    }

    .newgolf-cart-page .mobile-cart-delete button {
        min-width: 66px;
        min-height: 42px;
        font-size: 14px;
    }

    .newgolf-cart-page .mobile-cart-line-total {
        justify-self: end;
        font-size: 21px;
    }

    .newgolf-cart-page .mobile-cart-actionbar {
        display: grid;
        grid-template-columns: 82px minmax(0, 1fr);
        align-items: center;
        gap: 8px;
        overflow: hidden;
        min-height: 126px;
        padding: 10px;
    }

    .newgolf-cart-page .mobile-cart-check-all {
        min-width: 82px;
        grid-row: 1 / 3;
    }

    .newgolf-cart-page .mobile-cart-total {
        min-width: 0;
        width: 100%;
        justify-content: flex-end;
    }

    .newgolf-cart-page .mobile-cart-total strong {
        font-size: 20px;
    }

    .newgolf-cart-page .mobile-cart-bulk-form {
        min-width: 0;
        width: 100%;
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 6px;
        padding: 6px;
    }

    .newgolf-cart-page .mobile-cart-action {
        min-width: 0;
        min-height: 42px;
        padding: 0 6px;
        font-size: 13px;
    }

    .newgolf-cart-page .mobile-cart-action-primary {
        min-width: 0;
    }

    .newgolf-cart-page .mobile-cart-action-primary span {
        min-width: 24px;
        height: 22px;
        font-size: 12px;
    }
}

/* Reference-style member pages */
.newgolf-mypage-page {
    min-height: 100vh;
    overflow-x: hidden;
    background: #fff;
    color: #333;
}

.newgolf-mypage-page .shop-header,
.newgolf-mypage-page .mobile-dock {
    display: none;
}

.newgolf-mypage-page .shop-main {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
}

.newgolf-mypage-page .mobile-shop-header {
    background: #fff;
    color: #333;
    box-shadow: none;
}

.newgolf-mypage-page .mobile-shop-logo,
.newgolf-mypage-page .mobile-shop-nav-menu-pc li a,
.newgolf-mypage-page .icon-link,
.newgolf-mypage-page .mobile-shop-icon-link {
    color: #333;
    text-shadow: none;
}

.newgolf-mypage-page .mobile-shop-hamburger .bar {
    background: #333;
    box-shadow: none;
}

.mobile-mypage-page {
    min-height: 100vh;
    padding: 122px 0 120px;
    background: #fff;
}

.mobile-mypage-shell {
    width: min(500px, calc(100% - 28px));
    margin: 0 auto;
    display: grid;
    gap: 22px;
}

.mobile-mypage-title {
    padding: 34px 20px;
    border: 1px solid #edf0f5;
    border-radius: 20px;
    background: linear-gradient(135deg, #f7f9fc, #eef2f7);
    text-align: center;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .9);
    animation: mobileShopFadeUp .45s ease both;
}

.mobile-mypage-title h1 {
    margin: 0;
    color: #333;
    font-size: 38px;
    font-weight: 950;
    letter-spacing: 0;
    text-shadow: 2px 3px 4px rgba(0, 0, 0, .16);
}

.mobile-mypage-title p {
    margin: 12px 0 0;
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}

.mobile-mypage-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    animation: mobileShopFadeUp .45s ease .03s both;
}

.mobile-mypage-stats a,
.mobile-mypage-balance,
.mobile-mypage-menu a,
.mobile-mypage-panel,
.mobile-mypage-form {
    border: 1px solid #e4e8ef;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(15, 23, 42, .06);
}

.mobile-mypage-stats a {
    display: grid;
    gap: 8px;
    min-height: 92px;
    padding: 18px;
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.mobile-mypage-stats a:hover,
.mobile-mypage-menu a:hover,
.mobile-mypage-product:hover {
    border-color: #ff6600;
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(255, 102, 0, .13);
}

.mobile-mypage-stats span,
.mobile-mypage-balance span {
    color: #777;
    font-size: 13px;
    font-weight: 900;
}

.mobile-mypage-stats strong,
.mobile-mypage-balance strong {
    color: #ff454d;
    font-size: 26px;
    font-weight: 950;
}

.mobile-mypage-balance {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 98px;
    padding: 22px;
    animation: mobileShopFadeUp .45s ease .03s both;
}

.mobile-mypage-menu {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.mobile-mypage-menu a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 58px;
    color: #333;
    font-size: 15px;
    font-weight: 900;
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.mobile-mypage-menu a.is-active {
    border-color: #ff6600;
    color: #ff6600;
}

.mobile-mypage-panel,
.mobile-mypage-form {
    display: grid;
    gap: 14px;
    padding: 22px;
}

.mobile-mypage-panel h2 {
    margin: 0 0 4px;
    color: #333;
    font-size: 20px;
    font-weight: 950;
}

.mobile-mypage-order,
.mobile-mypage-line,
.mobile-mypage-coupon,
.mobile-mypage-address {
    display: grid;
    gap: 7px;
    padding: 16px 0;
    border-top: 1px solid #edf0f5;
}

.mobile-mypage-order:first-of-type,
.mobile-mypage-line:first-of-type,
.mobile-mypage-coupon:first-of-type,
.mobile-mypage-address:first-of-type {
    border-top: 0;
}

.mobile-mypage-order span,
.mobile-mypage-line span,
.mobile-mypage-coupon span,
.mobile-mypage-address strong {
    color: #222;
    font-size: 16px;
    font-weight: 950;
}

.mobile-mypage-order strong,
.mobile-mypage-line strong,
.mobile-mypage-coupon strong {
    color: #ff454d;
    font-size: 20px;
    font-weight: 950;
}

.mobile-mypage-order em,
.mobile-mypage-line small,
.mobile-mypage-coupon small,
.mobile-mypage-address span,
.mobile-mypage-address p {
    margin: 0;
    color: #777;
    font-size: 13px;
    font-style: normal;
    line-height: 1.45;
}

.mobile-mypage-empty {
    display: grid;
    place-items: center;
    min-height: 92px;
    margin: 0;
    border: 1px solid #f0d071;
    border-radius: 12px;
    color: #906800;
    font-size: 17px;
    font-weight: 900;
    text-align: center;
}

.mobile-mypage-form label {
    display: grid;
    gap: 9px;
    color: #333;
    font-size: 15px;
    font-weight: 950;
}

.mobile-mypage-form input {
    width: 100%;
    min-height: 54px;
    padding: 14px 16px;
    border: 1px solid #ddd;
    border-radius: 10px;
    background: #fff;
    color: #222;
    font-size: 16px;
    font-weight: 700;
}

.mobile-mypage-form input[readonly] {
    background: #f6f7f9;
    color: #777;
}

.mobile-mypage-form input:focus {
    border-color: #333;
    outline: none;
    box-shadow: 0 0 0 3px rgba(51, 51, 51, .08);
}

.mobile-mypage-form button {
    width: 100%;
    min-height: 54px;
    border: 0;
    border-radius: 10px;
    background: #ff6600;
    color: #fff;
    font-size: 16px;
    font-weight: 950;
    transition: background-color .2s ease, transform .2s ease;
}

.mobile-mypage-form button:hover {
    background: #e75d00;
    transform: translateY(-1px);
}

.mobile-mypage-check {
    grid-template-columns: 22px 1fr;
    align-items: center;
}

.mobile-mypage-check input {
    width: 20px;
    min-height: 20px;
    padding: 0;
    accent-color: #ff6600;
}

.mobile-mypage-error,
.mobile-mypage-success {
    margin: 0;
    padding: 13px 14px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 900;
}

.mobile-mypage-error {
    border: 1px solid rgba(231, 76, 60, .22);
    background: rgba(231, 76, 60, .08);
    color: #c0392b;
}

.mobile-mypage-success {
    border: 1px solid rgba(25, 135, 84, .22);
    background: rgba(25, 135, 84, .08);
    color: #176a3a;
}

.mobile-mypage-products {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.mobile-mypage-products .mobile-mypage-empty {
    grid-column: 1 / -1;
}

.mobile-mypage-product {
    display: grid;
    gap: 8px;
    min-width: 0;
    padding: 10px;
    border: 1px solid #e4e8ef;
    border-radius: 14px;
    background: #fff;
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.mobile-mypage-product img {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 10px;
    background: #f5f5f5;
    object-fit: cover;
}

.mobile-mypage-product span {
    overflow: hidden;
    min-height: 36px;
    color: #333;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.4;
}

.mobile-mypage-product strong {
    color: #ff454d;
    font-size: 15px;
    font-weight: 950;
}

@media (max-width: 560px) {
    .mobile-mypage-page {
        padding-top: 104px;
    }

    .mobile-mypage-shell {
        width: min(100% - 24px, 500px);
        gap: 18px;
    }

    .mobile-mypage-title {
        padding: 28px 18px;
        border-radius: 18px;
    }

    .mobile-mypage-title h1 {
        font-size: 34px;
    }

    .mobile-mypage-menu a {
        min-height: 54px;
        font-size: 14px;
    }

    .mobile-mypage-panel,
    .mobile-mypage-form {
        padding: 20px 16px;
    }
}

/* Reference m.newgolf.net member surface */
.reference-mypage-page .mobile-mypage-page,
.reference-mypage {
    min-height: 100vh;
    padding: 122px 36px 118px;
    background: #fff;
}

.reference-mypage-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 36px;
    width: 100%;
    margin: 0 auto;
}

.reference-mypage-card,
.reference-list-panel,
.reference-address-form {
    border: 1px solid #e4e4e4;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 1px 2px rgba(15, 23, 42, .03);
}

.reference-mypage-card {
    /* min-height: 360px; */
    padding: 34px;
}

.reference-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 64px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.reference-title-wrap {
    display: flex;
    align-items: center;
    gap: 18px;
    min-width: 0;
}

.reference-title-icon {
    width: 48px;
    height: 48px;
    display: inline-grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 50%;
    background: #fff2d9;
    color: #d2b48c;
    font-size: 28px;
}

.reference-title-wrap h1,
.reference-title-wrap h2,
.reference-panel-heading {
    margin: 0;
    color: #1f334d;
    font-size: 18px;
    font-weight: 950;
    letter-spacing: 0;
}

.reference-card-actions {
    display: flex;
    align-items: center;
    gap: 6px;
}

.reference-card-actions a,
.reference-card-actions button,
.reference-add-button {
    min-height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #d9b98e;
    border-radius: 8px;
    background: #f5f0e6;
    color: #d2a670;
    /* font-weight: 900; */
    cursor: pointer;
}

.reference-card-actions a,
.reference-card-actions button {
    width: 34px;
    padding: 0;
    font-size: 12px;
}

.reference-card-actions form {
    margin: 0;
}

.reference-add-button {
    gap: 8px;
    padding: 8px 16px;
    font-size: 14px;
    text-decoration: none;
    white-space: nowrap;
}

.reference-info-list {
    padding: 28px 0 0px;
    border-bottom: 1px solid #eee;
}

.reference-info-row {
    display: grid;
    grid-template-columns: 34px 92px minmax(0, 1fr);
    align-items: center;
    min-height: 58px;
    border-bottom: 1px solid #eee;
    color: #8c9a9a;
    font-size: 14px;
    /* font-weight: 800; */
}

.reference-info-row:last-child {
    border-bottom: 0;
}

.reference-info-row i {
    color: #9aa;
    font-size: 20px;
}

.reference-info-row strong {
    overflow: hidden;
    color: #27384d;
    /* font-weight: 950; */
    text-overflow: ellipsis;
    white-space: nowrap;
}

.reference-info-row .reference-point {
    color: #1f9dff;
}

.reference-mypage-menu {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 10px;
    padding-top: 28px;
}

.reference-mypage-menu a {
    min-height: 104px;
    display: grid;
    align-content: center;
    justify-items: center;
    gap: 10px;
    border: 1px solid #ffc56d;
    border-radius: 12px;
    background: #fff;
    color: #ff9300;
    text-decoration: none;
    transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease;
}

.reference-mypage-menu a:hover {
    background: #fff9ef;
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(255, 147, 0, .14);
}

.reference-mypage-menu i {
    font-size: 30px;
}

.reference-mypage-menu span {
    font-size: 12px;
    /* font-weight: 950; */
}

.reference-address-list {
    padding-top: 28px;
}

.reference-empty-box {
    min-height: 140px;
    display: grid;
    place-items: center;
    margin: 0;
    border-radius: 8px;
    background: #f7f8fa;
    color: #7f8c8d;
    font-size: 14px;
    /* font-weight: 900; */
    text-align: center;
}

.reference-address-item {
    display: grid;
    gap: 6px;
    padding: 18px 0;
    border-bottom: 1px solid #eee;
}

.reference-address-item:last-child {
    border-bottom: 0;
}

.reference-address-item strong {
    color: #1f334d;
    font-size: 17px;
    font-weight: 950;
}

.reference-address-item span,
.reference-address-item p {
    margin: 0;
    color: #778;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.5;
}

.reference-subpage {
    width: min(980px, calc(100% - 36px));
    margin: 0 auto;
    padding-right: 0;
    padding-left: 0;
}

.reference-order-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.reference-order-tabs a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
    border: 1px solid #e5e7eb;
    border-radius: 999px;
    background: #fff;
    color: #555;
    font-size: 15px;
    font-weight: 900;
    text-decoration: none;
}

.reference-order-tabs a.is-active,
.reference-order-tabs a:hover {
    border-color: #ff9300;
    color: #ff9300;
}

.reference-list-panel {
    padding: 26px;
}

.reference-panel-heading {
    margin-bottom: 22px;
    font-size: 22px;
}

.reference-icon-empty {
    min-height: 180px;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 16px;
    color: #98a2a2;
    text-align: center;
}

.reference-icon-empty i {
    color: #99a;
    font-size: 42px;
}

.reference-icon-empty p,
.reference-end-text {
    margin: 0;
    color: #777;
    font-size: 18px;
    font-weight: 900;
}

.reference-simple-title {
    margin-bottom: 18px;
    color: #333;
    font-size: 18px;
    font-weight: 900;
}

.reference-products {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.reference-product {
    display: grid;
    gap: 8px;
    color: #333;
    text-decoration: none;
}

.reference-product img {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 10px;
    background: #f5f5f5;
    object-fit: cover;
}

.reference-product span {
    overflow: hidden;
    min-height: 36px;
    font-size: 14px;
    font-weight: 900;
    line-height: 1.3;
}

.reference-product strong,
.reference-order-item strong {
    color: #ff454d;
    font-size: 18px;
    font-weight: 950;
}

.reference-order-item {
    display: grid;
    gap: 8px;
    padding: 18px 0;
    border-bottom: 1px solid #eee;
    color: #333;
    text-decoration: none;
}

.reference-order-item:last-child {
    border-bottom: 0;
}

.reference-order-item span {
    color: #1f334d;
    font-size: 17px;
    font-weight: 950;
}

.reference-order-item em {
    color: #889;
    font-size: 14px;
    font-style: normal;
    font-weight: 800;
}

.reference-end-text {
    grid-column: 1 / -1;
    min-height: 80px;
    display: grid;
    place-items: center;
}

.reference-address-form {
    display: grid;
    gap: 22px;
    max-width: 680px;
    margin: 0 auto;
    padding: 34px;
}

.reference-address-form h1 {
    margin: 0 0 4px;
    color: #1f334d;
    font-size: 28px;
    font-weight: 950;
}

.reference-form-group {
    display: grid;
    gap: 10px;
    color: #333;
    font-size: 15px;
    font-weight: 950;
}

.reference-form-group input {
    width: 100%;
    min-height: 54px;
    padding: 0 16px;
    border: 1px solid #dfe3eb;
    border-radius: 10px;
    background: #fff;
    color: #222;
    font-size: 16px;
    font-weight: 800;
}

.reference-form-group input:focus {
    border-color: #d2b48c;
    outline: none;
    box-shadow: 0 0 0 3px rgba(210, 180, 140, .16);
}

.reference-address-type {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
}

.reference-address-type label,
.reference-postcode-row button,
.reference-form-actions a,
.reference-form-actions button {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    border: 1px solid #e1c29a;
    border-radius: 10px;
    background: #fffaf2;
    color: #c49b66;
    font-size: 15px;
    font-weight: 950;
    cursor: pointer;
}

.reference-address-type label:has(input:checked) {
    background: #d2b48c;
    color: #fff;
}

.reference-postcode-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 148px;
    gap: 10px;
}

.reference-default-check {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #333;
    font-size: 15px;
    font-weight: 900;
}

.reference-default-check input {
    width: 18px;
    height: 18px;
    accent-color: #d2b48c;
}

.reference-form-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.reference-form-actions a,
.reference-form-actions button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.reference-form-actions button {
    background: #ff9300;
    color: #fff;
    border-color: #ff9300;
}

.reference-saved-addresses {
    max-width: 680px;
    margin: 24px auto 0;
}

.newgolf-cart-page .mobile-cart-empty {
    min-height: calc(100vh - 250px);
    display: grid;
    place-items: center;
    border: 0;
    background: transparent;
    color: #333;
    font-size: 20px;
    font-weight: 900;
}

@media (max-width: 980px) {
    .reference-mypage {
        padding: 104px 14px 106px;
    }

    .reference-mypage-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .reference-mypage-card,
    .reference-list-panel,
    .reference-address-form {
        border-radius: 14px;
    }

    .reference-mypage-card {
        padding: 24px 18px;
    }

    .reference-title-icon {
        width: 40px;
        height: 40px;
        font-size: 26px;
    }

    .reference-title-wrap h1,
    .reference-title-wrap h2 {
        font-size: 16px;
    }

    .reference-mypage-menu {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        display: none;
    }

    .reference-subpage {
        width: min(100% - 24px, 680px);
        padding-top: 104px;
    }

    .reference-products {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 560px) {
    .reference-card-head {
        gap: 10px;
        padding-bottom: 16px;
    }
    .reference-info-list {padding-top: 15px;padding-bottom: 0;}

    .reference-info-row {
        grid-template-columns: 30px 78px minmax(0, 1fr);
        font-size: 14px;
        min-height: 43px;
    }

    .reference-mypage-menu a {
        min-height: 86px;
    }

    .reference-mypage-menu i {
        font-size: 24px;
    }

    .reference-mypage-menu span {
        font-size: 13px;
    }

    .reference-empty-box {
        min-height: 112px;
        padding: 18px;
        font-size: 14px;
    }

    .reference-order-tabs {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .reference-order-tabs a {
        min-height: 40px;
        padding: 0 8px;
        font-size: 13px;
    }

    .reference-address-form {
        padding: 24px 18px;
    }

    .reference-postcode-row {
        grid-template-columns: 1fr;
    }
}

/* Shared header elevation: default shadow at top, deeper shadow after scroll */
.newgolf-mobile-shop .mobile-shop-header {
    box-shadow: 0 2px 10px rgba(0, 0, 0, .10);
    transition: background-color .3s ease, color .3s ease, box-shadow .3s ease;
}

.newgolf-mobile-shop .mobile-shop-header.scrolled,
.newgolf-mobile-shop .mobile-shop-header:has(.mobile-shop-menu-section.active),
.newgolf-mobile-shop .mobile-shop-header:has(.mobile-shop-search.active) {
    box-shadow: 0 4px 16px rgba(0, 0, 0, .16);
}

@media (max-width: 768px) {
    .mobile-category-product-info strong, .mobile-category-product-info .product-title { font-size:12px; }
    .mobile-category-product-info span, .mobile-category-product-info .product-price { font-size:13px; }
}
