/* ============================================
   Work Card — Modern Premium Design
   Карточка готовой работы — новый дизайн
   ============================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* ============================================
   CSS Custom Properties
   ============================================ */
:root {
    --wc-primary: #1a1a2e;
    --wc-primary-light: #16213e;
    --wc-accent: #e2b04a;
    --wc-accent-hover: #d4a03a;
    --wc-text: #2d3436;
    --wc-text-light: #636e72;
    --wc-text-muted: #b2bec3;
    --wc-bg: #f8f9fa;
    --wc-white: #ffffff;
    --wc-border: #e9ecef;
    --wc-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
    --wc-shadow-hover: 0 8px 32px rgba(0, 0, 0, 0.1);
    --wc-radius: 16px;
    --wc-radius-sm: 10px;
    --wc-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --wc-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ============================================
   Hero Section
   ============================================ */
.wc-hero {
    position: relative;
    background: linear-gradient(135deg, var(--wc-primary) 0%, var(--wc-primary-light) 50%, #0f3460 100%);
    border-radius: var(--wc-radius);
    padding: 48px 40px 40px;
    margin-bottom: 28px;
    overflow: hidden;
    font-family: var(--wc-font);
}

.wc-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(226, 176, 74, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.wc-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* Disclaimer top-right */
.wc-hero-disclaimer {
    position: absolute;
    top: 14px;
    right: 20px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    text-align: right;
    line-height: 1.4;
    max-width: 320px;
    font-family: var(--wc-font);
    font-weight: 300;
}

/* Work number badge */
.wc-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 5px 14px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 20px;
    font-family: var(--wc-font);
    font-weight: 500;
    letter-spacing: 0.02em;
    backdrop-filter: blur(4px);
}

/* Title */
.wc-hero-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--wc-white);
    line-height: 1.35;
    margin: 0 0 20px;
    font-family: var(--wc-font);
    position: relative;
    z-index: 1;
    max-width: 90%;
}

/* Info note under title */
.wc-hero-note {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--wc-radius-sm);
    padding: 12px 16px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.55;
    font-family: var(--wc-font);
    font-weight: 300;
    max-width: 700px;
}

.wc-hero-note-icon {
    flex-shrink: 0;
    font-size: 14px;
    margin-top: 1px;
    opacity: 0.6;
}

/* ============================================
   Info/Admin Block (worderinfo)
   ============================================ */
.wc-admin-info {
    background: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: var(--wc-radius-sm);
    padding: 12px 18px;
    margin-bottom: 16px;
    font-size: 13px;
    color: #856404;
    font-family: var(--wc-font);
}

/* ============================================
   Work Details Card
   ============================================ */
.wc-details {
    background: var(--wc-white);
    border-radius: var(--wc-radius);
    box-shadow: var(--wc-shadow);
    padding: 28px;
    margin-bottom: 28px;
    font-family: var(--wc-font);
    border: 1px solid var(--wc-border);
}

.wc-details-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.wc-detail-item--half {
    grid-column: span 3;
}

.wc-detail-item--third {
    grid-column: span 2;
}

.wc-detail-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 16px;
    background: var(--wc-bg);
    border-radius: var(--wc-radius-sm);
    transition: var(--wc-transition);
}

.wc-detail-item:hover {
    background: #f0f1f3;
    transform: translateY(-1px);
}

.wc-detail-icon {
    font-size: 20px;
    line-height: 1;
}

.wc-detail-label {
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--wc-text-light);
}

.wc-detail-value {
    font-size: 15px;
    font-weight: 600;
    color: var(--wc-text);
    line-height: 1.3;
}

/* Price + Buy */
.wc-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    padding-top: 20px;
    border-top: 1px solid var(--wc-border);
}

.wc-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.wc-price-amount {
    font-size: 32px;
    font-weight: 700;
    color: var(--wc-text);
    line-height: 1;
}

.wc-price-currency {
    font-size: 16px;
    font-weight: 500;
    color: var(--wc-text-light);
}

.wc-buy-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--wc-accent), var(--wc-accent-hover));
    color: var(--wc-primary);
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: var(--wc-transition);
    font-family: var(--wc-font);
    box-shadow: 0 4px 16px rgba(226, 176, 74, 0.3);
}

.wc-buy-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(226, 176, 74, 0.4);
    background: linear-gradient(135deg, #efc05a, var(--wc-accent));
}

.wc-buy-btn:active {
    transform: translateY(0);
}

/* ============================================
   Legal Info Popup
   ============================================ */
.wc-legal {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--wc-text-light);
    cursor: pointer;
    padding: 8px 0;
    transition: var(--wc-transition);
    font-family: var(--wc-font);
    user-select: none;
    border: none;
    background: none;
}

.wc-legal:hover {
    color: var(--wc-accent-hover);
}

.wc-legal-icon {
    font-size: 16px;
    transition: var(--wc-transition);
}

.wc-legal-text {
    font-weight: 500;
    border-bottom: 1px dashed currentColor;
}

.wc-legal-chevron {
    font-size: 10px;
    transition: transform 0.3s ease;
    margin-left: 2px;
}

.wc-legal.active .wc-legal-chevron {
    transform: rotate(180deg);
}

.wc-legal-popup {
    display: none;
    background: var(--wc-bg);
    border: 1px solid var(--wc-border);
    border-radius: var(--wc-radius-sm);
    padding: 20px 24px;
    margin-top: 12px;
    font-size: 13px;
    line-height: 1.7;
    color: var(--wc-text-light);
    font-family: var(--wc-font);
    font-weight: 400;
    animation: wc-slideDown 0.3s ease;
}

.wc-legal-popup.active {
    display: block;
}

.wc-legal-popup p {
    margin: 0 0 10px;
}

.wc-legal-popup p:last-child {
    margin-bottom: 0;
}

@keyframes wc-slideDown {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   Section Navigation (Pill Tabs)
   ============================================ */
.wc-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 28px;
    font-family: var(--wc-font);
}

.wc-nav-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    background: var(--wc-white);
    border: 1px solid var(--wc-border);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    color: var(--wc-text);
    text-decoration: none;
    transition: var(--wc-transition);
    cursor: pointer;
    font-family: var(--wc-font);
    white-space: nowrap;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.wc-nav-pill:hover {
    background: var(--wc-primary);
    color: var(--wc-white);
    border-color: var(--wc-primary);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(26, 26, 46, 0.15);
}

.wc-nav-pill--accent {
    background: linear-gradient(135deg, var(--wc-accent), var(--wc-accent-hover));
    color: var(--wc-primary);
    border-color: var(--wc-accent);
    font-weight: 600;
}

.wc-nav-pill--accent:hover {
    background: linear-gradient(135deg, #efc05a, var(--wc-accent));
    border-color: #efc05a;
    color: var(--wc-primary);
    box-shadow: 0 4px 16px rgba(226, 176, 74, 0.3);
}

/* ============================================
   Content Sections
   ============================================ */
.wc-section {
    background: var(--wc-white);
    border-radius: var(--wc-radius);
    box-shadow: var(--wc-shadow);
    margin-bottom: 24px;
    overflow: hidden;
    border: 1px solid var(--wc-border);
    font-family: var(--wc-font);
}

.wc-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    background: var(--wc-bg);
    border-bottom: 1px solid var(--wc-border);
}

.wc-section-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--wc-text);
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
}

.wc-section-body {
    padding: 24px;
    font-size: 14px;
    line-height: 1.75;
    color: var(--wc-text);
}

.wc-section-body .btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 20px;
    padding: 12px 28px;
    background: linear-gradient(135deg, var(--wc-accent), var(--wc-accent-hover));
    color: var(--wc-primary);
    border: none;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--wc-transition);
    font-family: var(--wc-font);
    text-decoration: none;
}

.wc-section-body .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(226, 176, 74, 0.3);
}

/* ============================================
   Word Document-style TOC and Intro/Conclusion
   ============================================ */
.wc-section--doc {
    border: none;
    box-shadow: none;
    background: transparent;
    overflow: visible;
}

.wc-section--doc .wc-section-body {
    background: #fff;
    border: 1px solid #d4d4d4;
    border-radius: 2px;
    box-shadow:
        0 1px 4px rgba(0, 0, 0, 0.06),
        0 0 0 1px rgba(0, 0, 0, 0.03),
        4px 4px 12px rgba(0, 0, 0, 0.04);
    position: relative;
}

/* A4-like page feel */
.wc-toc {
    font-family: 'Times New Roman', 'Liberation Serif', 'Noto Serif', Georgia, serif;
    font-size: 15px;
    line-height: 1.65;
    color: #1a1a1a;
    padding: 48px 56px 40px;
    letter-spacing: -0.01em;
    word-spacing: 0.02em;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: auto;
    max-width: 720px;
}

/* Responsive adjustments for mobile */
@media (max-width: 768px) {
    .wc-toc {
        padding: 28px 24px 24px;
        font-size: 14px;
        line-height: 1.55;
    }
}

@media (max-width: 480px) {
    .wc-toc {
        padding: 20px 16px 18px;
        font-size: 13px;
        line-height: 1.5;
    }
}

/* Body text sections (Intro, Conclusion, References) */
.wc-doc-text {
    font-family: 'Times New Roman', 'Liberation Serif', 'Noto Serif', Georgia, serif;
    font-size: 15px;
    line-height: 1.8;
    color: #1a1a1a;
    padding: 48px 56px 40px;
    letter-spacing: -0.01em;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: auto;
    text-align: justify;
    text-indent: 1.25cm;
    hyphens: auto;
    max-width: 720px;
}

@media (max-width: 768px) {
    .wc-doc-text {
        padding: 28px 24px 24px;
        font-size: 14px;
        line-height: 1.65;
        text-indent: 0.8cm;
    }
}

@media (max-width: 480px) {
    .wc-doc-text {
        padding: 20px 16px 18px;
        font-size: 13px;
        line-height: 1.55;
        text-indent: 0.6cm;
    }
}

/* ============================================
   Banner «Возникли сложности?»
   ============================================ */
.wc-banner {
    position: relative;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 40%, #0f3460 100%);
    border-radius: var(--wc-radius);
    padding: 40px;
    margin-bottom: 28px;
    overflow: hidden;
    font-family: var(--wc-font);
}

.wc-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -15%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(226, 176, 74, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.wc-banner-content {
    position: relative;
    z-index: 1;
    text-align: center;
    margin-bottom: 28px;
}

.wc-banner-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--wc-white);
    margin: 0 0 8px;
}

.wc-banner-subtitle {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0 0 4px;
}

.wc-banner-cta {
    font-size: 16px;
    font-weight: 600;
    color: var(--wc-accent);
    margin: 0;
}

.wc-banner-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.wc-banner-grid a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--wc-radius-sm);
    color: var(--wc-white);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    transition: var(--wc-transition);
    backdrop-filter: blur(4px);
    text-align: center;
}

.wc-banner-grid a:hover {
    background: var(--wc-accent);
    color: var(--wc-primary);
    border-color: var(--wc-accent);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(226, 176, 74, 0.3);
}

/* ============================================
   Order Form
   ============================================ */
.wc-order {
    background: var(--wc-white);
    border-radius: var(--wc-radius);
    box-shadow: var(--wc-shadow);
    overflow: hidden;
    margin-bottom: 28px;
    border: 1px solid var(--wc-border);
    font-family: var(--wc-font);
}

.wc-order-header {
    background: linear-gradient(135deg, var(--wc-primary), var(--wc-primary-light));
    padding: 20px 28px;
    color: var(--wc-white);
}

.wc-order-header-title {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
}

.wc-order-body {
    padding: 28px;
}

.wc-order-info {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #e8f5e9;
    border-radius: var(--wc-radius-sm);
    padding: 12px 16px;
    margin-bottom: 24px;
    font-size: 13px;
    color: #2e7d32;
    font-weight: 500;
}

.wc-form-group {
    margin-bottom: 18px;
}

.wc-form-group label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--wc-text);
    margin-bottom: 6px;
}

.wc-form-group label .req {
    color: #e74c3c;
}

.wc-form-group input[type="text"],
.wc-form-group input[type="email"],
.wc-form-group input[type="tel"],
.wc-form-group textarea,
.wc-form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--wc-border);
    border-radius: var(--wc-radius-sm);
    font-size: 14px;
    font-family: var(--wc-font);
    color: var(--wc-text);
    background: var(--wc-white);
    transition: var(--wc-transition);
    box-sizing: border-box;
    outline: none;
}

.wc-form-group input:focus,
.wc-form-group textarea:focus,
.wc-form-group select:focus {
    border-color: var(--wc-accent);
    box-shadow: 0 0 0 3px rgba(226, 176, 74, 0.1);
}

.wc-form-group textarea {
    min-height: 100px;
    resize: vertical;
}

.wc-form-group .ferror {
    display: block;
    font-size: 12px;
    color: #e74c3c;
    margin-top: 4px;
}

.wc-checkbox-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 13px;
    color: var(--wc-text-light);
}

.wc-checkbox-row input[type="checkbox"] {
    margin-top: 2px;
    accent-color: var(--wc-accent);
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.wc-checkbox-row a {
    color: var(--wc-accent-hover);
    text-decoration: underline;
}

.wc-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 40px;
    background: linear-gradient(135deg, var(--wc-accent), var(--wc-accent-hover));
    color: var(--wc-primary);
    border: none;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--wc-transition);
    font-family: var(--wc-font);
    box-shadow: 0 4px 16px rgba(226, 176, 74, 0.3);
}

.wc-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(226, 176, 74, 0.4);
}

/* ============================================
   Related Works «Возможно вас заинтересует»
   ============================================ */
.wc-related {
    background: var(--wc-white);
    border-radius: var(--wc-radius);
    box-shadow: var(--wc-shadow);
    padding: 28px;
    margin-bottom: 28px;
    border: 1px solid var(--wc-border);
    font-family: var(--wc-font);
    animation: wc-fadeIn 0.5s ease 0.35s both;
}

.wc-related-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--wc-text);
    margin: 0 0 6px;
    display: flex;
    align-items: center;
    gap: 8px;
    line-height: 1.4;
}

.wc-related-count {
    font-size: 13px;
    color: var(--wc-text-muted);
    margin: 0 0 20px;
}

.wc-related-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.wc-related-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 16px 0;
    border-bottom: 1px solid var(--wc-border);
    text-decoration: none;
    transition: var(--wc-transition);
}

.wc-related-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.wc-related-item:first-child {
    padding-top: 0;
}

.wc-related-item:hover .wc-related-item-title {
    color: var(--wc-accent-hover);
}

.wc-related-item-title {
    font-size: 14px;
    font-weight: 500;
    color: var(--wc-text);
    line-height: 1.5;
    transition: var(--wc-transition);
}

.wc-related-item-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.wc-related-tag {
    display: inline-block;
    padding: 3px 10px;
    background: var(--wc-bg);
    border-radius: 20px;
    font-size: 11px;
    font-weight: 500;
    color: var(--wc-text-light);
    white-space: nowrap;
}

.wc-related-tag--price {
    background: linear-gradient(135deg, var(--wc-accent), var(--wc-accent-hover));
    color: var(--wc-primary);
    font-weight: 600;
}

/* Pagination */
.wc-related-paging {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--wc-border);
    flex-wrap: wrap;
}

.wc-paging-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 12px;
    background: var(--wc-bg);
    border: 1px solid var(--wc-border);
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    color: var(--wc-text);
    text-decoration: none;
    transition: var(--wc-transition);
    cursor: pointer;
    font-family: var(--wc-font);
}

.wc-paging-btn:hover {
    background: var(--wc-primary);
    color: var(--wc-white);
    border-color: var(--wc-primary);
}

.wc-paging-btn--active {
    background: var(--wc-primary);
    color: var(--wc-white);
    border-color: var(--wc-primary);
    cursor: default;
    font-weight: 600;
}

/* ============================================
   Screenshots gallery in new style
   ============================================ */
.wc-section .highslide-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.wc-section .highslide-gallery a img {
    border-radius: 8px;
    transition: var(--wc-transition);
    max-height: 200px;
}

.wc-section .highslide-gallery a img:hover {
    transform: scale(1.03);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

/* ============================================
   Animations
   ============================================ */
@keyframes wc-fadeIn {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.wc-hero {
    animation: wc-fadeIn 0.5s ease;
}

.wc-details {
    animation: wc-fadeIn 0.5s ease 0.1s both;
}

.wc-nav {
    animation: wc-fadeIn 0.5s ease 0.15s both;
}

.wc-section {
    animation: wc-fadeIn 0.5s ease 0.2s both;
}

.wc-banner {
    animation: wc-fadeIn 0.5s ease 0.25s both;
}

.wc-order {
    animation: wc-fadeIn 0.5s ease 0.3s both;
}

/* Language field removed from HTML — Russian by default */

/* ============================================
   Responsive — Tablet (max-width: 1024px)
   ============================================ */
@media (max-width: 1024px) {
    .wc-hero {
        padding: 36px 28px 32px;
    }

    .wc-hero-title {
        font-size: 24px;
        max-width: 95%;
    }

    .wc-hero-disclaimer {
        position: relative;
        top: auto;
        right: auto;
        text-align: left;
        max-width: 100%;
        margin-bottom: 16px;
    }

    .wc-details-grid {
        grid-template-columns: repeat(6, 1fr);
    }

    .wc-detail-item--half {
        grid-column: span 3;
    }

    .wc-detail-item--third {
        grid-column: span 2;
    }

    .wc-banner-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ============================================
   Responsive — Tablet Small (max-width: 768px)
   ============================================ */
@media (max-width: 768px) {
    .wc-hero {
        padding: 28px 20px 24px;
        border-radius: var(--wc-radius-sm);
    }

    .wc-hero-title {
        font-size: 20px;
        max-width: 100%;
    }

    .wc-hero-badge {
        font-size: 11px;
        padding: 4px 12px;
    }

    .wc-hero-note {
        font-size: 11px;
        padding: 10px 14px;
    }

    .wc-details {
        padding: 20px;
        border-radius: var(--wc-radius-sm);
    }

    .wc-details-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .wc-detail-item--half,
    .wc-detail-item--third {
        grid-column: span 1;
    }

    .wc-detail-item {
        padding: 12px;
    }

    .wc-price-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .wc-buy-btn {
        width: 100%;
        justify-content: center;
    }

    .wc-nav {
        gap: 6px;
    }

    .wc-nav-pill {
        padding: 8px 14px;
        font-size: 12px;
    }

    .wc-section-header {
        padding: 14px 18px;
    }

    .wc-section-body {
        padding: 18px;
    }

    .wc-banner {
        padding: 28px 20px;
        border-radius: var(--wc-radius-sm);
    }

    .wc-banner-title {
        font-size: 20px;
    }

    .wc-banner-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .wc-banner-grid a {
        font-size: 12px;
        padding: 12px 10px;
    }

    .wc-order-body {
        padding: 20px;
    }

    .wc-related {
        padding: 20px;
    }
}

/* ============================================
   Responsive — Mobile (max-width: 480px)
   ============================================ */
@media (max-width: 480px) {
    .wc-hero {
        padding: 24px 16px 20px;
        margin-bottom: 16px;
        border-radius: 12px;
    }

    .wc-hero-disclaimer {
        font-size: 10px;
    }

    .wc-hero-title {
        font-size: 18px;
    }

    .wc-hero-note {
        font-size: 10.5px;
        padding: 10px 12px;
        gap: 8px;
    }

    .wc-details {
        padding: 16px;
        margin-bottom: 16px;
        border-radius: 12px;
    }

    .wc-details-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .wc-detail-item--half,
    .wc-detail-item--third {
        grid-column: span 1;
    }

    .wc-detail-item {
        padding: 10px;
    }

    .wc-detail-label {
        font-size: 10px;
    }

    .wc-detail-value {
        font-size: 13px;
    }

    .wc-price-amount {
        font-size: 26px;
    }

    .wc-nav-pill {
        padding: 7px 12px;
        font-size: 11px;
    }

    .wc-section {
        margin-bottom: 16px;
        border-radius: 12px;
    }

    .wc-section-header {
        padding: 12px 14px;
    }

    .wc-section-body {
        padding: 14px;
        font-size: 13px;
    }

    .wc-banner {
        padding: 24px 16px;
        margin-bottom: 16px;
        border-radius: 12px;
    }

    .wc-banner-title {
        font-size: 18px;
    }

    .wc-banner-subtitle {
        font-size: 13px;
    }

    .wc-banner-cta {
        font-size: 14px;
    }

    .wc-banner-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .wc-banner-grid a {
        font-size: 11px;
        padding: 10px 8px;
    }

    .wc-order {
        border-radius: 12px;
        margin-bottom: 16px;
    }

    .wc-order-header {
        padding: 16px 18px;
    }

    .wc-order-body {
        padding: 16px;
    }

    .wc-form-group input[type="text"],
    .wc-form-group input[type="email"],
    .wc-form-group input[type="tel"],
    .wc-form-group textarea,
    .wc-form-group select {
        padding: 10px 14px;
        font-size: 14px;
    }

    .wc-submit-btn {
        width: 100%;
        justify-content: center;
    }

    .wc-related {
        padding: 16px;
        border-radius: 12px;
    }

    .wc-legal-popup {
        padding: 14px 16px;
        font-size: 12px;
    }
}
