.product-show-mobile {
    padding: 16px;
    max-width: 100%;
    background: #fff;
}

.mobile-product-header {
    margin-bottom: 16px;
}

.mobile-product-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0;
    color: #222;
    line-height: 1.3;
}

.mobile-product-image {
    text-align: center;
    margin-bottom: 20px;
    background-color: #f8f9fa;
    padding: 20px;
}

.mobile-product-main-image {
    width: 100%;
    max-width: 300px;
    height: auto;
}

.mobile-product-price-section {
    background-color: #fff;
    padding: 20px 16px;
    margin: 0 -16px 20px -16px;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.mobile-product-price {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.mobile-price-amount {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.mobile-product-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mobile-add-to-cart-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mobile-quantity-selector {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mobile-quantity-selector label {
    font-size: 1rem;
    color: #333;
    font-weight: 600;
}

.mobile-quantity-input {
    width: 80px;
    padding: 12px;
    border: 1px solid #ddd;
    text-align: center;
    font-size: 1rem;
    font-family: var(--font-family);
}

.mobile-quantity-input:disabled {
    background-color: #f5f5f5;
    color: #999;
    cursor: not-allowed;
    opacity: 0.6;
}

.mobile-product-description {
    margin-bottom: 24px;
    padding: 20px 16px;
    background-color: #f7f9fa;
    margin: 0 -16px 20px -16px;
}

.mobile-product-description h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: #333;
    font-weight: 600;
}

.mobile-product-description p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
    margin: 0;
}

.mobile-product-specs {
    margin-bottom: 24px;
}

.mobile-product-specs h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: #333;
    font-weight: 600;
}

.mobile-spec-title {
    padding: 8px;
}

.mobile-spec-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-spec-item {
    padding: 12px;
}

.mobile-spec-item:nth-child(odd) {
    background-color: #f7f9fa;
}

.mobile-spec-item:nth-child(even) {
    background-color: transparent;
}

.mobile-spec-item span {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.5;
}

.btn-mobile {
    width: 100%;
    padding: 14px 20px;
    border: none;
    font-size: 1rem;
    font-family: var(--font-family);
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    display: block;
    text-align: center;
    box-sizing: border-box;
}

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

.btn-mobile-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-mobile-primary:active {
    background-color: var(--primary-color-dark);
}

.btn-mobile-large {
    padding: 16px 24px;
    font-size: 1.1rem;
}

.btn-mobile-primary:disabled {
    background-color: #cccccc;
    color: #666666;
    cursor: not-allowed;
    opacity: 0.6;
}

.btn-mobile-primary:disabled:active {
    background-color: #cccccc;
    transform: none;
}
