html, body {
    max-width: 100vw;
    overflow-x: hidden;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #1a56db;
    --primary-dark: #1442a8;
    --primary-light: #e8f0fe;
    --dark: #111827;
    --gray-900: #1f2937;
    --gray-700: #374151;
    --gray-500: #6b7280;
    --gray-300: #d1d5db;
    --gray-100: #f3f4f6;
    --white: #ffffff;
    --green: #059669;
    --green-light: #d1fae5;
    --radius: 12px;
    --radius-sm: 8px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--dark);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

.page {
    display: none;
    min-height: 100vh;
}
.page.active {
    display: block;
}

/* NAV */
.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}
.logo-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: auto; align-items: center;
}
.logo-container.sm {
    align-items: center;
}
.logo-text {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--dark);
    line-height: 1;
    letter-spacing: -1.5px;
}
.logo-container.sm .logo-text {
    font-size: 1.5rem;
}
.logo-text span {
    color: var(--primary);
}
.logo-slogan {
    font-size: 0.85rem;
    color: var(--gray-500);
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 0.2rem;
    text-align: center;
    
    width: 100%;
}
.logo-container.sm .logo-slogan {
    font-size: 0.65rem;
}
.nav-links {
    display: flex;
    gap: 2rem;
}
.nav-links a {
    text-decoration: none;
    color: var(--gray-700);
    font-weight: 500;
    font-size: 0.9rem;
}
.nav-links a:hover {
    color: var(--primary);
}

/* BUTTONS */
.btn {
    border: none;
    cursor: pointer;
    font-weight: 600;
    border-radius: var(--radius-sm);
    transition: all 0.2s;
    font-size: 0.95rem;
}
.btn-primary {
    background: var(--primary);
    color: white;
    padding: 0.7rem 1.5rem;
}
.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(26, 86, 219, 0.3);
}
.btn-outline {
    background: white;
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 0.7rem 1.5rem;
}
.btn-outline:hover {
    background: var(--primary-light);
}
.btn-sm { padding: 0.5rem 1rem; font-size: 0.85rem; }
.btn-lg { padding: 1rem 2rem; font-size: 1.1rem; }
.btn-full { width: 100%; margin-top: 1.5rem; }

/* HERO */
.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    align-items: center;
}
.badge {
    display: inline-block;
    background: var(--green-light);
    color: var(--green);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}
.hero-text h1 {
    font-size: 3rem;
    line-height: 1.15;
    margin-bottom: 1rem;
    color: var(--dark);
}
.subtitle {
    font-size: 1.2rem;
    color: var(--gray-500);
    margin-bottom: 2rem;
    max-width: 550px;
}
.hero-cta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}
.hero-price {
    color: var(--gray-500);
    font-size: 0.95rem;
}
.trust-badges {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.trust-badges span {
    font-size: 0.85rem;
    color: var(--gray-700);
    font-weight: 500;
}

.hero-visual {
    display: flex;
    justify-content: center;
}
.glove-illustration {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.glove-card {
    background: var(--gray-100);
    border-radius: var(--radius);
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.glove-photo {
    height: 220px;
    width: 180px;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}
.glove-icon {
    font-size: 4rem;
    opacity: 0.4;
}
.glove-icon.fresh {
    opacity: 1;
}
.arrow {
    font-size: 2rem;
    color: var(--primary);
    font-weight: bold;
}
.visual-caption {
    text-align: center;
    margin-top: 1rem;
    color: var(--gray-500);
    font-weight: 500;
}

/* SECTIONS */
.section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem;
}
.section h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 0.5rem;
}
.section-subtitle {
    text-align: center;
    color: var(--gray-500);
    margin-bottom: 3rem;
}

/* HOW IT WORKS */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}
.step-card {
    background: var(--gray-100);
    border-radius: var(--radius);
    padding: 2rem 1.5rem;
    text-align: center;
    position: relative;
}
.step-number {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}
.step-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}
.step-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1rem;
}
.step-card p {
    font-size: 0.85rem;
    color: var(--gray-500);
}

/* PRICING */
.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}
.price-card {
    border: 2px solid var(--gray-300);
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
    position: relative;
    transition: all 0.2s;
}
.price-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(26,86,219,0.1);
}
.price-card.popular {
    border-color: var(--primary);
    box-shadow: 0 8px 24px rgba(26,86,219,0.1);
}
.price-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 0.2rem 0.8rem;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
}
.price-card h3 {
    font-size: 1.3rem;
    margin: 0.5rem 0;
}
.price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark);
    margin: 1rem 0;
}
.price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--gray-500);
}
.price-card ul {
    list-style: none;
    text-align: left;
    margin: 1.5rem 0;
}
.price-card li {
    padding: 0.4rem 0;
    font-size: 0.9rem;
    color: var(--gray-700);
}
.price-card li::before {
    content: "✓ ";
    color: var(--green);
    font-weight: bold;
}

/* GALLERY */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}
.gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    transition: transform 0.2s;
}
.gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}
.gallery-caption {
    padding: 0.8rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-700);
    background: var(--gray-100);
}

/* FAQ */
.faq-list {
    max-width: 700px;
    margin: 2rem auto;
}
.faq-item {
    border-bottom: 1px solid var(--gray-300);
    cursor: pointer;
}
.faq-q {
    padding: 1.2rem 0;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-toggle {
    font-size: 1.5rem;
    color: var(--primary);
    transition: transform 0.2s;
}
.faq-a {
    padding: 0 0 1.2rem;
    color: var(--gray-500);
    font-size: 0.9rem;
    display: none;
}
.faq-item.open .faq-a {
    display: block;
}
.faq-item.open .faq-toggle {
    transform: rotate(45deg);
}

/* FOOTER */
.footer {
    text-align: center;
    padding: 3rem 2rem;
    border-top: 1px solid var(--gray-300);
    margin-top: 3rem;
}
.footer p {
    color: var(--gray-500);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}
.footer-links a {
    color: var(--primary);
    text-decoration: none;
}

/* ORDER PAGES */
.order-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    border-bottom: 1px solid var(--gray-300);
    position: sticky;
    top: 0;
    background: white;
    z-index: 10;
}
.back-btn {
    background: none;
    border: none;
    font-size: 0.95rem;
    cursor: pointer;
    color: var(--gray-700);
    font-weight: 500;
}
.back-btn:hover { color: var(--primary); }
.step-indicator {
    font-size: 0.85rem;
    color: var(--gray-500);
    font-weight: 500;
}
.order-content {
    max-width: 640px;
    margin: 0 auto;
    padding: 2rem;
}
.order-content h2 {
    margin-bottom: 0.3rem;
}
.step-desc {
    color: var(--gray-500);
    margin-bottom: 2rem;
}

/* PALM OPTIONS */
.palm-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.palm-option input {
    display: none;
}
.palm-card {
    border: 2px solid var(--gray-300);
    border-radius: var(--radius);
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.2s;
}
.palm-option input:checked + .palm-card {
    border-color: var(--primary);
    background: var(--primary-light);
}
.palm-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}
.palm-header h3 { font-size: 1.1rem; }
.palm-price {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary);
}
.palm-desc {
    font-size: 0.9rem;
    color: var(--gray-500);
    margin-bottom: 0.5rem;
}
.palm-meta {
    font-size: 0.8rem;
    color: var(--gray-700);
}
.rec-badge {
    background: var(--green-light);
    color: var(--green);
    font-size: 0.7rem;
    padding: 0.15rem 0.5rem;
    border-radius: 8px;
    font-weight: 600;
    margin-left: 0.5rem;
}

/* SIZE */
.size-select {
    margin-top: 1.5rem;
}
.size-select label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.size-select select, .country-select select {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid var(--gray-300);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    background: white;
    cursor: pointer;
}

/* SPINNER */
.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* SHIPPING */
.country-select {
    margin-bottom: 1.5rem;
}
.country-select label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.carrier-info {
    background: var(--primary-light);
    border-radius: var(--radius-sm);
    padding: 1rem 1.5rem;
    margin-bottom: 1.5rem;
}
.carrier-badge {
    font-size: 0.95rem;
    margin-bottom: 0.3rem;
}
.carrier-info p {
    font-size: 0.85rem;
    color: var(--gray-500);
}
.shipping-cost-preview {
    margin-top: 0.6rem;
    padding-top: 0.6rem;
    border-top: 1px solid rgba(26,86,219,0.15);
    font-size: 0.9rem;
    color: var(--gray-700);
}

/* POINTS */
.points-map {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}
.map-placeholder {
    background: var(--gray-100);
    border-radius: var(--radius-sm);
    overflow: hidden;
    min-height: 250px;
}
.map-fake {
    position: relative;
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, #e8f4e8 0%, #f0f8ff 50%, #e8e8f4 100%);
}
.map-pin {
    position: absolute;
    font-size: 1.5rem;
    cursor: pointer;
    transition: transform 0.2s;
}
.map-pin.selected {
    transform: scale(1.4);
}
.points-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    max-height: 250px;
    overflow-y: auto;
}
.point-item {
    display: flex;
    gap: 0.8rem;
    padding: 0.8rem;
    border: 2px solid var(--gray-300);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.15s;
    align-items: flex-start;
}
.point-item:hover { border-color: var(--primary); }
.point-item.selected {
    border-color: var(--primary);
    background: var(--primary-light);
}
.point-icon { font-size: 1.3rem; }
.point-info strong {
    display: block;
    font-size: 0.85rem;
}
.point-info span {
    display: block;
    font-size: 0.78rem;
    color: var(--gray-500);
}
.point-hours {
    color: var(--green) !important;
    font-weight: 500;
}

/* SUMMARY */
.summary-card {
    background: var(--gray-100);
    border-radius: var(--radius);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}
.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 0.6rem 0;
    font-size: 0.95rem;
}
.summary-row.total {
    font-size: 1.2rem;
    font-weight: 800;
}
.summary-divider {
    border-top: 2px solid var(--gray-300);
    margin: 0.5rem 0;
}
.included {
    color: var(--green);
    font-weight: 600;
}
.delivery-estimate {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: #fff8e6;
    border-radius: var(--radius-sm);
    padding: 1rem 1.5rem;
    margin-bottom: 2rem;
}
.estimate-icon { font-size: 1.5rem; }
.delivery-estimate strong { font-size: 0.9rem; }
.delivery-estimate p { font-size: 0.8rem; color: var(--gray-500); }

/* PAYMENT */
.payment-section h3 {
    margin-bottom: 1rem;
}
.form-group {
    margin-bottom: 1rem;
}
.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}
.form-group input, .card-fields input {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid var(--gray-300);
    border-radius: var(--radius-sm);
    font-size: 1rem;
}
.form-row {
    display: flex;
    gap: 1rem;
}
.form-row .half { flex: 1; }
.payment-methods {
    display: flex;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}
.pm-option {
    flex: 1;
    text-align: center;
    padding: 0.8rem;
    border: 2px solid var(--gray-300);
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.15s;
}
.pm-option.selected {
    border-color: var(--primary);
    background: var(--primary-light);
}
.secure-note {
    text-align: center;
    font-size: 0.8rem;
    color: var(--gray-500);
    margin-top: 1rem;
}

/* CONFIRMATION */
.confirmation-content {
    text-align: center;
}
.confirm-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}
.confirm-subtitle {
    color: var(--gray-500);
    margin-bottom: 2rem;
}
.qr-section {
    background: var(--gray-100);
    border-radius: var(--radius);
    padding: 2rem;
    margin-bottom: 2rem;
    display: inline-block;
}
.qr-code {
    margin-bottom: 1rem;
}
.qr-instruction {
    font-size: 0.95rem;
    margin-bottom: 0.3rem;
}
.qr-sub {
    font-size: 0.8rem;
    color: var(--gray-500);
}
.next-steps {
    text-align: left;
    background: var(--primary-light);
    border-radius: var(--radius);
    padding: 1.5rem 2rem;
    margin-bottom: 2rem;
}
.next-steps h3 {
    margin-bottom: 0.8rem;
}
.next-steps ol {
    padding-left: 1.2rem;
}
.next-steps li {
    padding: 0.4rem 0;
    font-size: 0.9rem;
    color: var(--gray-700);
}

/* TIMELINE */
.timeline {
    display: flex;
    justify-content: space-between;
    margin: 2rem 0;
    position: relative;
    padding: 0 1rem;
}
.timeline::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 1rem;
    right: 1rem;
    height: 2px;
    background: var(--gray-300);
}
.tl-step {
    text-align: center;
    position: relative;
    z-index: 1;
    flex: 1;
}
.tl-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--gray-300);
    margin: 0 auto 0.5rem;
    border: 3px solid white;
    box-shadow: 0 0 0 2px var(--gray-300);
}
.tl-step.done .tl-dot {
    background: var(--green);
    box-shadow: 0 0 0 2px var(--green);
}
.tl-step.current .tl-dot {
    background: var(--primary);
    box-shadow: 0 0 0 2px var(--primary);
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 2px var(--primary); }
    50% { box-shadow: 0 0 0 6px rgba(26,86,219,0.2); }
}
.tl-text {
    font-size: 0.7rem;
    color: var(--gray-500);
    font-weight: 500;
}
.tl-step.done .tl-text,
.tl-step.current .tl-text {
    color: var(--dark);
    font-weight: 600;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        padding: 2rem 1.5rem;
        text-align: center;
    }
    .hero-cta {
        flex-direction: column;
        width: 100%;
    }
    .hero-cta .btn {
        width: 100%;
    }
    .trust-badges {
        justify-content: center;
    }
    .subtitle {
        margin: 0 auto 2rem auto;
    }
    .hero-text h1 { font-size: 2.2rem; }
    .steps-grid { grid-template-columns: 1fr; }
    .pricing-cards { grid-template-columns: 1fr; }
    .points-map { grid-template-columns: 1fr; }
    
    .nav {
        flex-wrap: wrap;
        gap: 1rem;
        padding: 1rem 1.5rem;
        justify-content: center;
    }
    .nav-links a { display: none; }
    .nav-links { gap: 0.5rem; }
    
    .glove-card {
        padding: 1rem;
        gap: 0.5rem;
    }
    .glove-photo {
        height: 160px;
        width: 130px;
    }
    .glove-illustration {
        transform: none;
        margin-top: 0;
        width: 100%;
    }
    
    .timeline { flex-wrap: wrap; gap: 0.5rem; }
    .timeline::before { display: none; }
    .gallery-grid { grid-template-columns: 1fr; }

    .section { padding: 3rem 1.5rem; overflow: hidden; }
    .materials-section { padding: 3rem 1.5rem !important; }
    .product-card { width: 100%; max-width: 100%; }
    
    .order-content { padding: 1.5rem; }
    .order-header { padding: 1rem 1.5rem; }
}


/* --- CONFIGURATOR STYLES --- */
.configurator-container {
    display: flex;
    flex-direction: row;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
    padding: 1rem 0;
}

@media (max-width: 768px) {
    .configurator-container {
        flex-direction: column;
        gap: 2rem;
        padding: 1.5rem;
    }
}

.configurator-preview {
    flex: 1;
    display: flex;
    align-items: flex-start;
}

.preview-image-box {
    width: 100%;
    aspect-ratio: 4/5;
    background: #f0f0f0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.configurator-sidebar {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.config-price-display {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 2rem;
    border-bottom: 2px solid var(--gray-200);
    padding-bottom: 1rem;
}

.config-section {
    margin-bottom: 2rem;
}

.config-section h3 {
    font-size: 1rem;
    color: var(--gray-600);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.material-swatches {
    display: flex;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.swatch-label {
    flex: 1;
    cursor: pointer;
}

.swatch-label input {
    display: none;
}

.swatch-btn {
    padding: 0.8rem 0.5rem;
    text-align: center;
    border: 2px solid var(--gray-300);
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--gray-600);
    transition: all 0.2s ease-in-out;
    background: white;
}

.swatch-label input:checked + .swatch-btn {
    border-color: var(--primary);
    background: var(--primary);
    color: white;
}

.material-details {
    background: #f8f9fa;
    padding: 1.2rem;
    border-radius: 6px;
    font-size: 0.95rem;
    color: var(--gray-700);
    line-height: 1.5;
    border-left: 4px solid var(--primary);
}

.config-actions {
    margin-top: auto;
    padding-top: 2rem;
}

.config-trust {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
    font-size: 0.85rem;
    color: var(--gray-500);
}

/* --- PRODUCT CARDS (e-commerce style) --- */
.products-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    width: 320px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: 1px solid var(--gray-200);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.popular-product {
    border: 2px solid var(--primary);
}

.product-image {
    width: 100%;
    height: 220px;
    position: relative;
    background: #f8f9fa;
}

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

.badge-top-left {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.popular-product .badge-top-left {
    background: var(--primary);
}

.product-info {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-info h3 {
    font-size: 1.4rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.product-price {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--gray-200);
    padding-bottom: 1rem;
}

.product-price .unit {
    font-size: 0.9rem;
    color: var(--gray-500);
    font-weight: 500;
}

.product-desc {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.5;
    margin-bottom: 1.5rem;
    flex: 1;
}

.btn-full {
    width: 100%;
}

/* --- IMAGE MODAL / LIGHTBOX --- */
.glove-photo, .gallery-item img, .product-image img {
    cursor: zoom-in;
    transition: transform 0.2s ease;
}

.glove-photo:hover, .gallery-item img:hover, .product-image img:hover {
    transform: scale(1.02);
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 80vh;
    border-radius: 8px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.5);
    animation: zoom 0.3s ease;
}

#modal-caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 15px 0;
    font-size: 1.1rem;
    animation: zoom 0.3s ease;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.close-modal:hover,
.close-modal:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

@keyframes zoom {
    from {transform:scale(0)} 
    to {transform:scale(1)}
}
