.vop-page-shell {
    width: 100%;
}

.vop-wrap {
    max-width: 1280px;
    margin: 0 auto;
    padding: 28px 16px 56px;
    color: #1b1b1b;
}

.vop-wrap,
.vop-wrap * {
    box-sizing: border-box;
}

.vop-wrap a {
    transition: all 0.2s ease;
}

.vop-archive-header {
    max-width: 760px;
    margin: 0 auto 32px;
    text-align: center;
}

.vop-archive-header h1 {
    margin: 0 0 10px;
    font-size: clamp(2rem, 4vw, 2.9rem);
    line-height: 1.08;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.vop-archive-header p {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.65;
    color: #5b5b5b;
}

.vop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    align-items: stretch;
}

.vop-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #ffffff;
    border: 1px solid #e9e9e9;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.05);
}

.vop-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.08);
}

.vop-card-image {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    background: #f5f5f5;
    overflow: hidden;
}

.vop-card-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.25s ease;
}

.vop-card:hover .vop-card-image img {
    transform: scale(1.03);
}

.vop-card-badge-wrap {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
}

.vop-condition-badge {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(17, 17, 17, 0.82);
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.02em;
    backdrop-filter: blur(4px);
}

.vop-no-image {
    width: 100%;
    height: 100%;
    min-height: 220px;
    background: linear-gradient(180deg, #f7f7f7 0%, #efefef 100%);
    color: #666666;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 16px;
    font-size: 0.95rem;
}

.vop-card-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 18px 18px 20px;
}

.vop-card-title {
    margin: 0 0 12px;
    font-size: 1.1rem;
    line-height: 1.35;
    font-weight: 700;
}

.vop-card-title a {
    color: #161616;
    text-decoration: none;
}

.vop-card-title a:hover {
    color: #000000;
}

.vop-price {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 10px;
    margin: 0 0 14px;
}

.vop-price-old {
    font-size: 0.95rem;
    color: #7a7a7a;
    text-decoration: line-through;
}

.vop-price-current {
    font-size: 1.35rem;
    font-weight: 800;
    color: #111111;
    line-height: 1.1;
}

.vop-price-single .vop-price-current {
    font-size: clamp(1.7rem, 3vw, 2.2rem);
}

.vop-summary {
    margin: 0 0 16px;
    color: #5b5b5b;
    line-height: 1.6;
    font-size: 0.96rem;
}

.vop-card-footer {
    margin-top: auto;
    padding-top: 8px;
}

.vop-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 46px;
    padding: 11px 18px;
    border: 1px solid #111111;
    border-radius: 10px;
    background: #111111;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.96rem;
    line-height: 1.2;
    cursor: pointer;
}

.vop-button:hover,
.vop-button:focus {
    background: #222222;
    border-color: #222222;
    color: #ffffff;
    text-decoration: none;
}

.vop-button.vop-button-secondary {
    background: #ffffff;
    color: #111111;
    border-color: #d7d7d7;
}

.vop-button.vop-button-secondary:hover,
.vop-button.vop-button-secondary:focus {
    border-color: #111111;
    color: #111111;
    background: #ffffff;
}

.vop-empty {
    max-width: 720px;
    margin: 0 auto;
    padding: 48px 24px;
    text-align: center;
    background: #fafafa;
    border: 1px solid #ececec;
    border-radius: 18px;
}

.vop-empty p {
    margin: 0;
    color: #5b5b5b;
    font-size: 1rem;
    line-height: 1.6;
}

.vop-breadcrumb {
    margin: 0 0 20px;
    font-size: 0.93rem;
    color: #6a6a6a;
}

.vop-breadcrumb a {
    color: #111111;
    text-decoration: none;
}

.vop-breadcrumb a:hover {
    text-decoration: underline;
}

.vop-single {
    padding-top: 22px;
}

.vop-single-grid {
    display: grid;
    grid-template-columns: minmax(320px, 1.05fr) minmax(320px, 0.95fr);
    gap: 34px;
    align-items: start;
    margin-bottom: 34px;
}

.vop-single-gallery {
    position: sticky;
    top: 24px;
}

.vop-main-image {
    position: relative;
    overflow: hidden;
    border: 1px solid #ebebeb;
    border-radius: 20px;
    background: #f5f5f5;
    aspect-ratio: 4 / 3;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.04);
}

.vop-main-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.vop-main-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
}

.vop-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-top: 14px;
}

.vop-gallery-tile {
    display: block;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    background: #f6f6f6;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.03);
}

.vop-gallery-tile:hover {
    transform: translateY(-1px);
    border-color: #cfcfcf;
}

.vop-gallery-tile img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}
.vop-gallery-tile {
    padding: 0;
    cursor: pointer;
}

.vop-gallery-tile.is-active {
    border-color: #111111;
    box-shadow: 0 0 0 2px rgba(17, 17, 17, 0.08);
}

.vop-gallery-tile:focus {
    outline: none;
    border-color: #111111;
    box-shadow: 0 0 0 3px rgba(17, 17, 17, 0.12);
}
.vop-single-summary {
    min-width: 0;
}

.vop-single-summary h1 {
    margin: 0 0 14px;
    font-size: clamp(2rem, 4vw, 2.8rem);
    line-height: 1.08;
    letter-spacing: -0.02em;
    font-weight: 700;
}

.vop-intro-copy {
    margin: 0 0 18px;
    color: #5b5b5b;
    font-size: 1rem;
    line-height: 1.7;
}

.vop-meta-card,
.vop-condition-panel,
.vop-description,
.vop-enquiry-block {
    border: 1px solid #ececec;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.035);
}

.vop-meta-card {
    padding: 18px 20px;
    margin-bottom: 18px;
}

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

.vop-meta-item {
    min-width: 0;
}

.vop-meta-label {
    display: block;
    margin-bottom: 4px;
    color: #777777;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.vop-meta-value {
    color: #1b1b1b;
    font-size: 1rem;
    line-height: 1.45;
    word-wrap: break-word;
}

.vop-condition-panel {
    padding: 18px 20px;
    margin-bottom: 18px;
    background: #fafafa;
}

.vop-condition-panel h3,
.vop-description h3,
.vop-enquiry-block h2 {
    margin: 0 0 10px;
    font-size: 1.15rem;
    line-height: 1.3;
}

.vop-condition-text {
    margin: 0 0 10px;
    color: #1b1b1b;
    line-height: 1.6;
}

.vop-condition-notes-copy {
    margin: 0;
    color: #565656;
    line-height: 1.7;
}

.vop-description {
    padding: 20px;
    margin-bottom: 20px;
}

.vop-description p:first-child {
    margin-top: 0;
}

.vop-description p:last-child {
    margin-bottom: 0;
}

.vop-description,
.vop-description p,
.vop-description li {
    line-height: 1.75;
    color: #363636;
}

.vop-enquiry-block {
    padding: 24px;
    background: linear-gradient(180deg, #ffffff 0%, #fbfbfb 100%);
}

.vop-enquiry-block p {
    color: #5b5b5b;
    line-height: 1.7;
}

.vop-enquiry-form {
    margin-top: 14px;
}

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

.vop-enquiry-form p {
    margin: 0 0 16px;
}

.vop-enquiry-form label {
    display: block;
    margin-bottom: 7px;
    color: #1b1b1b;
    font-weight: 600;
    font-size: 0.95rem;
}

.vop-enquiry-form input[type="text"],
.vop-enquiry-form input[type="email"],
.vop-enquiry-form textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #d5d5d5;
    border-radius: 12px;
    background: #ffffff;
    color: #1b1b1b;
    font-size: 1rem;
    line-height: 1.4;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.02);
}

.vop-enquiry-form input[type="text"]:focus,
.vop-enquiry-form input[type="email"]:focus,
.vop-enquiry-form textarea:focus {
    outline: none;
    border-color: #111111;
    box-shadow: 0 0 0 3px rgba(17, 17, 17, 0.08);
}

.vop-enquiry-form textarea {
    min-height: 160px;
    resize: vertical;
}

.vop-form-submit {
    margin-top: 4px;
}

.vop-notice {
    margin: 0 0 22px;
    padding: 14px 16px;
    border-radius: 14px;
    font-size: 0.96rem;
    line-height: 1.55;
}

.vop-success {
    background: #edf8ef;
    border: 1px solid #b9dec1;
    color: #1e5a2e;
}

.vop-error {
    background: #fff2f2;
    border: 1px solid #edc0c0;
    color: #8a2020;
}

.vop-honeypot {
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
}

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

    .vop-single-gallery {
        position: static;
    }
}

@media (max-width: 767px) {
    .vop-wrap {
        padding: 22px 14px 42px;
    }

    .vop-grid {
        gap: 18px;
    }

    .vop-card-body {
        padding: 16px;
    }

    .vop-main-image {
        border-radius: 16px;
    }

    .vop-gallery-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 10px;
    }

    .vop-meta-grid,
    .vop-form-grid {
        grid-template-columns: 1fr;
    }

    .vop-enquiry-block,
    .vop-description,
    .vop-meta-card,
    .vop-condition-panel {
        padding: 18px;
        border-radius: 16px;
    }

    .vop-single-summary h1 {
        margin-bottom: 12px;
    }
}

@media (max-width: 480px) {
    .vop-card-image,
    .vop-main-image {
        aspect-ratio: 1 / 1;
    }

    .vop-gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .vop-condition-badge {
        font-size: 0.76rem;
        padding: 6px 10px;
    }

    .vop-button {
        width: 100%;
    }
}