/**
 * Custom Order System - Styles
 * Modern, responsive styling with smooth animations
 */

/* ==========================================================================
   Variables
   ========================================================================== */
:root {
    /* Hamco Sports Brand Colors */
    --primary-color: #FE0000;      /* Hamco Red */
    --primary-light: #FF3333;      /* Lighter Red */
    --primary-dark: #CC0000;       /* Darker Red */
    --secondary-color: #000000;    /* Black */
    --danger-color: #ef4444;
    --warning-color: #f59e0b;
    --success-color: #10b981;

    --text-primary: #000000;       /* Black text */
    --text-secondary: #333333;     /* Dark grey text */
    --text-light: #666666;         /* Medium grey text */

    --bg-primary: #ffffff;         /* White background */
    --bg-secondary: #F5F5F5;       /* Light grey background */
    --bg-tertiary: #EEEEEE;        /* Lighter grey */

    --border-color: #E5E5E5;       /* Light grey border */
    --border-radius: 12px;
    --border-radius-sm: 8px;

    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);

    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ==========================================================================
   Base Styles
   ========================================================================== */
.custom-order-wrapper {
    min-height: 100vh;
    background: linear-gradient(135deg, #F5F5F5 0%, #FFFFFF 50%, #F8F8F8 100%);
    padding: 40px 20px;
}

.custom-order-container {
    max-width: 1200px;
    margin: 0 auto;
    background: var(--bg-primary);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
}

/* ==========================================================================
   Progress Indicator
   ========================================================================== */
.progress-indicator {
    padding: 30px 40px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: white;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 30px;
}

.progress-fill {
    height: 100%;
    background: white;
    border-radius: 10px;
    transition: width var(--transition-base);
}

.progress-steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    position: relative;
}

.step-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    transition: all var(--transition-base);
    border: 3px solid transparent;
}

.progress-step.active .step-circle {
    background: white;
    color: var(--primary-color);
    transform: scale(1.1);
    box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.3);
}

.progress-step.completed .step-circle {
    background: var(--success-color);
    color: white;
}

.progress-step.completed .step-circle::before {
    content: '✓';
}

.step-label {
    margin-top: 12px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    opacity: 0.8;
}

.progress-step.active .step-label {
    opacity: 1;
    font-size: 15px;
}

/* ==========================================================================
   Form Steps
   ========================================================================== */
.form-step {
    display: none;
    padding: 50px 40px;
    animation: fadeIn var(--transition-base);
}

.form-step.active {
    display: block;
}

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

.step-header {
    text-align: center;
    margin-bottom: 50px;
}

.step-header h1 {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-primary);
    margin: 0 0 15px;
}

.step-header p {
    font-size: 18px;
    color: var(--text-secondary);
    margin: 0;
}

/* ==========================================================================
   Step 1: Sports Grid
   ========================================================================== */
.sports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.sport-card {
    position: relative;
    background: var(--bg-secondary);
    border: 3px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-base);
    overflow: hidden;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.sport-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(255,255,255,0.1) 0%, rgba(30,58,138,0.95) 100%);
    opacity: 1;
    transition: all var(--transition-base);
}

.sport-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    opacity: 0;
    transition: opacity var(--transition-base);
}

.sport-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: var(--shadow-lg);
}

.sport-card:active {
    transform: translateY(-2px) scale(1);
}

.sport-card.selected {
    border-color: var(--success-color);
    transform: translateY(-5px) scale(1.05);
}

.sport-card.selected::after {
    opacity: 0.9;
}

.sport-icon {
    font-size: 50px;
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
    display: none;
}

.sport-card h3 {
    font-size: 22px;
    font-weight: 800;
    margin: 0;
    position: relative;
    z-index: 2;
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    padding: 15px;
    background: rgba(0,0,0,0.3);
    border-radius: 8px;
    backdrop-filter: blur(4px);
}

.sport-check {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 30px;
    height: 30px;
    background: var(--success-color);
    color: white;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    z-index: 2;
    animation: checkPop 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.sport-card.selected .sport-check {
    display: flex;
}

@keyframes checkPop {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

/* ==========================================================================
   Step 2: Products Grid
   ========================================================================== */
.products-container {
    min-height: 300px;
    margin-bottom: 30px;
}

.products-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--border-color);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

.spinner-small {
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    display: inline-block;
    margin-right: 10px;
}

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

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.product-card {
    position: relative;
    background: var(--bg-secondary);
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    padding: 0;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-fast);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    border-color: var(--primary-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.product-card.selected {
    background: var(--primary-light);
    border-color: var(--primary-color);
    color: white;
}

.product-card.selected .product-content {
    background: var(--primary-light);
}

.product-icon {
    font-size: 40px;
    margin-bottom: 10px;
    padding: 25px 15px 10px;
}

.product-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform var(--transition-base);
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-content {
    padding: 20px 15px;
    background: var(--bg-secondary);
    flex: 1;
    display: flex;
    flex-direction: column;
    transition: background var(--transition-fast);
}

.product-card h4 {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 10px 0;
    line-height: 1.4;
    color: var(--text-primary);
}

.product-card.selected h4 {
    color: white;
}

.product-description {
    font-size: 13px;
    color: var(--text-secondary);
    margin: 0 0 12px 0;
    line-height: 1.5;
}

.product-card.selected .product-description {
    color: rgba(255,255,255,0.9);
}

.product-features {
    list-style: none;
    padding: 0;
    margin: 10px 0 0 0;
    text-align: left;
}

.product-features li {
    font-size: 12px;
    color: var(--text-secondary);
    padding: 4px 0;
    position: relative;
    padding-left: 18px;
}

.product-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
}

.product-card.selected .product-features li {
    color: rgba(255,255,255,0.85);
}

.product-card.selected .product-features li::before {
    color: white;
}

.product-check {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 24px;
    height: 24px;
    background: var(--success-color);
    color: white;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    animation: checkPop 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.product-card.selected .product-check {
    display: flex;
}

.selected-products-summary {
    background: var(--bg-tertiary);
    border-radius: var(--border-radius-sm);
    padding: 20px;
    margin-bottom: 30px;
}

.selected-products-summary h3 {
    font-size: 18px;
    color: var(--text-primary);
    margin: 0 0 15px;
}

.selected-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.selected-tag {
    background: var(--primary-light);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

/* ==========================================================================
   Step 3: Order Details Form
   ========================================================================== */
.order-details-form {
    max-width: 100%;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.form-section {
    background: var(--bg-secondary);
    border-radius: var(--border-radius-sm);
    padding: 30px;
}

.form-section.full-width {
    grid-column: 1 / -1;
}

.form-section h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--border-color);
}

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

.form-group:last-child {
    margin-bottom: 0;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="date"],
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-size: 15px;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    transition: all var(--transition-fast);
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-light);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

.form-group input.error,
.form-group textarea.error {
    border-color: var(--danger-color);
}

.error-message {
    display: block;
    color: var(--danger-color);
    font-size: 13px;
    margin-top: 6px;
    font-weight: 500;
}

.color-input-group {
    display: flex;
    gap: 10px;
    align-items: center;
}

.color-input-group input[type="color"] {
    width: 80px;
    height: 50px;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    cursor: pointer;
}

.color-text {
    flex: 1;
    padding: 12px 16px;
    font-size: 15px;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    background: var(--bg-tertiary);
    font-family: 'Courier New', monospace;
    font-weight: 600;
}

/* Color Palette */
.color-palette {
    margin-top: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    padding: 15px;
    padding-top: 40px;
    background: var(--bg-tertiary);
    border-radius: var(--border-radius-sm);
    border: 1px solid var(--border-color);
    overflow: visible;
    position: relative;
    pointer-events: auto;
}

.palette-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-right: 8px;
    white-space: nowrap;
}

.color-swatch-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.color-swatch {
    width: 45px;
    height: 45px;
    border-radius: 8px;
    border: 2px solid #ddd;
    cursor: pointer;
    transition: all var(--transition-fast);
    padding: 0;
    position: relative;
    display: block;
    z-index: 1;
    pointer-events: auto;
}

.color-swatch:hover {
    transform: scale(1.15);
    box-shadow: 0 6px 16px rgba(0,0,0,0.3);
    border-color: var(--primary-color);
    z-index: 10;
}

.color-swatch:active {
    transform: scale(1.05);
}

.color-swatch.selected {
    border-color: var(--primary-color);
    border-width: 3px;
    box-shadow: 0 0 0 3px rgba(254, 0, 0, 0.3);
    transform: scale(1.1);
}

.color-swatch.selected::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 24px;
    font-weight: bold;
    text-shadow: 0 0 3px rgba(0,0,0,0.8), 0 0 5px rgba(0,0,0,0.5);
    pointer-events: none;
}

.pms-label {
    font-size: 10px;
    color: var(--text-secondary);
    font-weight: 600;
    white-space: nowrap;
    text-align: center;
}

/* Custom Color Codes */
.field-description {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 12px;
    font-style: italic;
}

.custom-color-input-wrapper {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 10px;
}

.custom-color-input {
    flex: 1;
    padding: 12px 16px;
    font-size: 15px;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    transition: all var(--transition-fast);
}

.custom-color-input:focus {
    outline: none;
    border-color: var(--primary-light);
    box-shadow: 0 0 0 4px rgba(254, 0, 0, 0.1);
}

.btn-remove-color {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid var(--danger-color);
    background: white;
    color: var(--danger-color);
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    transition: all var(--transition-fast);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    line-height: 1;
}

.btn-remove-color:hover {
    background: var(--danger-color);
    color: white;
    transform: scale(1.1);
}

.btn-add-field {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: var(--border-radius-sm);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
    margin-top: 10px;
}

.btn-add-field:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* File Upload */
.file-upload-area {
    border: 3px dashed var(--border-color);
    border-radius: var(--border-radius);
    padding: 40px;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-base);
    background: var(--bg-tertiary);
}

.file-upload-area:hover {
    border-color: var(--primary-light);
    background: white;
}

.file-upload-area.drag-over {
    border-color: var(--primary-color);
    background: rgba(59, 130, 246, 0.05);
    transform: scale(1.02);
}

.upload-icon {
    font-size: 50px;
    margin-bottom: 15px;
}

.upload-text {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 8px;
}

.upload-hint {
    font-size: 13px;
    color: var(--text-secondary);
    margin: 0;
}

.file-preview {
    display: none;
    align-items: center;
    gap: 15px;
    background: white;
    padding: 20px;
    border-radius: var(--border-radius-sm);
}

.preview-icon {
    font-size: 40px;
}

.preview-info {
    flex: 1;
    text-align: left;
}

.preview-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 5px;
    word-break: break-all;
}

.preview-size {
    font-size: 13px;
    color: var(--text-secondary);
    margin: 0;
}

.remove-file {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: var(--danger-color);
    color: white;
    border: none;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.remove-file:hover {
    background: #dc2626;
    transform: rotate(90deg);
}

/* Form Summary */
.form-summary {
    background: linear-gradient(135deg, #eff6ff 0%, #e0f2fe 100%);
    border: 2px solid var(--primary-light);
    border-radius: var(--border-radius);
    padding: 25px;
    margin-bottom: 30px;
}

.form-summary h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 0 20px;
}

.summary-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.summary-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
}

.summary-value {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary-color);
}

/* ==========================================================================
   Step Actions (Buttons)
   ========================================================================== */
.step-actions {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    padding-top: 30px;
    border-top: 2px solid var(--border-color);
}

.btn-custom-order {
    flex: 1;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 700;
    border-radius: var(--border-radius-sm);
    border: none;
    cursor: pointer;
    transition: all var(--transition-fast);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    text-align: center;
}

.btn-next,
.btn-submit {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
}

.btn-next:hover,
.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-next:active,
.btn-submit:active {
    transform: translateY(0);
}

.btn-next:disabled,
.btn-submit:disabled {
    background: var(--text-light);
    cursor: not-allowed;
    transform: none;
}

.btn-back {
    background: white;
    color: var(--text-primary);
    border: 2px solid var(--border-color);
}

.btn-back:hover {
    border-color: var(--primary-light);
    color: var(--primary-light);
}

.btn-secondary {
    background: white;
    color: var(--text-primary);
    border: 2px solid var(--border-color);
}

.btn-secondary:hover {
    background: var(--bg-secondary);
}

.btn-loading {
    display: none;
    align-items: center;
}

/* ==========================================================================
   Success Screen
   ========================================================================== */
.success-container {
    text-align: center;
    padding: 60px 40px;
    max-width: 700px;
    margin: 0 auto;
}

.success-icon {
    width: 100px;
    height: 100px;
    background: var(--success-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    font-weight: 700;
    margin: 0 auto 30px;
    animation: successPop 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes successPop {
    0% { transform: scale(0) rotate(-180deg); }
    50% { transform: scale(1.2) rotate(10deg); }
    100% { transform: scale(1) rotate(0deg); }
}

.success-container h1 {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-primary);
    margin: 0 0 15px;
}

.success-message {
    font-size: 18px;
    color: var(--text-secondary);
    margin: 0 0 30px;
}

.order-number-box {
    background: linear-gradient(135deg, #eff6ff, #e0f2fe);
    border: 3px solid var(--primary-light);
    border-radius: var(--border-radius);
    padding: 30px;
    margin: 30px 0;
}

.order-number-box p {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 10px;
}

.order-number-box h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-color);
    margin: 0;
    letter-spacing: 2px;
}

.success-note {
    font-size: 15px;
    color: var(--text-secondary);
    margin: 30px 0;
}

.success-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 40px;
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */
@media (max-width: 768px) {
    .custom-order-wrapper {
        padding: 20px 10px;
    }

    .form-step {
        padding: 30px 20px;
    }

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

    .step-header p {
        font-size: 16px;
    }

    .sports-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 15px;
    }

    .sport-card {
        padding: 15px;
        min-height: 220px;
    }

    .sport-icon {
        font-size: 40px;
    }

    .sport-card h3 {
        font-size: 18px;
        padding: 12px;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 15px;
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .form-section {
        padding: 20px;
    }

    .step-actions {
        flex-direction: column;
    }

    .btn-custom-order {
        width: 100%;
    }

    .step-actions .btn-back {
        order: 2;
    }

    .success-actions {
        flex-direction: column;
    }

    .progress-steps {
        flex-direction: row;
    }

    .step-circle {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .step-label {
        font-size: 12px;
    }

    .progress-step.active .step-label {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .sports-grid {
        grid-template-columns: 1fr 1fr;
    }

    .products-grid {
        grid-template-columns: 1fr 1fr;
    }

    .file-upload-area {
        padding: 30px 20px;
    }

    .upload-icon {
        font-size: 40px;
    }

    .success-container {
        padding: 40px 20px;
    }

    .success-icon {
        width: 80px;
        height: 80px;
        font-size: 50px;
    }

    .success-container h1 {
        font-size: 28px;
    }

    .order-number-box h2 {
        font-size: 24px;
    }
}

/* ==========================================================================
   Touch Device Enhancements
   ========================================================================== */
@media (hover: none) {
    .sport-card:hover,
    .product-card:hover {
        transform: none;
    }

    .sport-card:active,
    .product-card:active {
        transform: scale(0.97);
    }

    .btn-custom-order:hover {
        transform: none;
    }

    .btn-custom-order:active {
        transform: scale(0.98);
    }
}

/* ==========================================================================
   Print Styles
   ========================================================================== */
@media print {
    .progress-indicator,
    .step-actions,
    .btn-custom-order {
        display: none;
    }

    .custom-order-wrapper {
        background: white;
    }

    .form-step {
        display: block !important;
        page-break-inside: avoid;
    }
}
