.category-title ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mry-subtitle:before {
    width: 10px;
}

.mry-subtitle {
    padding-left: 30px;
    margin-bottom: 15px;
}

.mry-filter {
    text-align: left;
}

.mry-filter .mry-card-category {
    font-size: 14px;
    margin-bottom: 15px;
    cursor: pointer;
    transition: transform 0.5s ease-out, color 0.3s ease, font-weight 0.3s ease;
}

.mry-filter .mry-card-category.mry-current {
    font-weight: bold;
    transform: translateX(20px);
}

@media screen and (max-width: 768px) {

    .mry-subtitle:before {
        width: 6px;
    }

    .mry-filter .mry-card-category {
        font-size: 12px;
    }

    .mry-subtitle {
        display: none;
    }

    .mry-filter .mry-card-category.mry-current {
        font-weight: bold;
        transform: translateZ(30px);
    }

    .mry-filter {
        text-align: center;
    }


}

.product-detail-container {
    padding: 60px 0;
}

.product-images {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.product-main-image {
    width: 100%;
    height: 500px;
    background-color: #f5f5f5;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.product-thumbnails {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.thumbnail {
    width: 100%;
    height: 120px;
    background-color: #f5f5f5;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.3s ease;
}

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

.thumbnail.active {
    border-color: #000;
}

.product-info {
    padding-left: 40px;
}

.product-title {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #000;
}

.product-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e0e0e0;
}

.product-sku {
    font-size: 14px;
    color: #666;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #666;
}

.product-specifications {
    margin-bottom: 40px;
}

.spec-row {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 20px;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
}

.spec-label {
    font-weight: 600;
    color: #000;
}

.spec-value {
    color: #666;
    line-height: 1.6;
}

.product-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
}

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

.quantity-input {
    border: 1px solid #ddd;
    border-radius: 4px;
    width: 80px;
    height: 40px;
    text-align: center;
    font-size: 14px;
}

.btn-primary {
    background-color: #000;
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #333;
}

.btn-secondary {
    background-color: transparent;
    color: #000;
    padding: 15px 40px;
    border: 1px solid #000;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #000;
    color: white;
}

.related-products {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 1px solid #e0e0e0;
}

.related-products h2 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 40px;
}

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

.product-card {
    text-align: center;
}

.product-card-image {
    width: 100%;
    height: 300px;
    background-color: #f5f5f5;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 15px;
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.product-card-name {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #000;
}

.product-card-size {
    font-size: 14px;
    color: #666;
}

@media (max-width: 768px) {
    .product-info {
        padding-left: 0;
        margin-top: 30px;
    }

    .product-main-image {
        height: 350px;
    }

    .product-title {
        font-size: 24px;
    }

    .spec-row {
        grid-template-columns: 1fr;
        gap: 8px;
    }

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