* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
    font-family: 'Arial Black', sans-serif; 
}

body { 
    background-color: #121212; 
    color: white; 
}

nav {
    background-color: #000;
    padding: 15px 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 2px solid #ff6600;
}

.logo-link {
  color: white;
  text-decoration: none;
}

.logo { 
    color: #ff6600; 
    font-size: 1.2rem; 
}

.nav-center {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-center input {
    padding: 8px;
    border-radius: 4px;
    border: none;
    width: 200px;
}

.nav-jersey {
    background: #ff6600;
    color: white;
    border: 1px solid #ff6600;
    padding: 7px 15px;
    text-decoration: none;
    font-size: 0.8rem;
    text-transform: uppercase;
    transition: 0.3s; 
}

.nav-tenis {
    background: #ff6600;
    color: white;
    border: 1px solid #ff6600;
    padding: 7px 15px;
    text-decoration: none;
    font-size: 0.8rem;
    text-transform: uppercase;
    transition: 0.3s; 
}

.nav-shorts {
    background: #ff6600;
    color: white;
    border: 1px solid #ff6600;
    padding: 7px 15px;
    text-decoration: none;
    font-size: 0.8rem;
    text-transform: uppercase;
    transition: 0.3s;
}

.nav-btn {
    background: none;
    color: white;
    border: 1px solid white;
    padding: 7px 15px;
    text-decoration: none;
    font-size: 0.8rem;
    text-transform: uppercase;
    transition: 0.3s;
}

.nav-btn:hover { 
    background: #ff6600; 
    border-color: #ff6600;
 }

.login {
    background: #ff6600;
    color: white;
    padding: 8px 20px;
    text-decoration: none;
    border-radius: 4px;
}

.product-page {
    max-width: 1200px;
    margin: 40px auto;
    display: flex;
    gap: 50px;
    padding: 20px;
    background: #1e1e1e;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.product-gallery { 
    flex: 1.2; 
    text-align: center; 
}

.main-image {
    width: 100%;
    max-height: 550px;
    object-fit: contain;
    background: white;
    border-radius: 8px;
    padding: 20px;
}

.product-info { 
    flex: 1; 
    display: flex; 
    flex-direction: column; 
}

.breadcrumb { 
    font-size: 0.8rem; 
    color: #888; 
    margin-bottom: 10px; 
}

.product-title { 
    font-size: 2.2rem; 
    margin-bottom: 10px; 
}

.price-tag { 
    font-size: 1.8rem; 
    color: #ff6600; 
    font-weight: bold; 
    margin-bottom: 25px; 
}

.label { 
    font-weight: bold; 
    margin-bottom: 10px; 
    display: block; 
    text-transform: uppercase; 
    font-size: 0.9rem; 
}
        
.options-group { 
    margin-bottom: 25px; 
}
        
.color-list { 
    display: flex; 
    gap: 12px; 
}
.color-item { 
    width: 35px; 
    height: 35px; 
    border-radius: 50%; 
    border: 2px solid #ddd; 
    cursor: pointer; 
    transition: 0.2s; 
}

.color-item:hover { 
    transform: scale(1.1); 
    border-color: #ff6600; 
}

.color-active { 
    border-color: #ff6600; 
    outline: 2px solid #ff6600; 
    outline-offset: 2px; 
}

.size-list { 
    display: flex; 
    gap: 10px; 
}

.size-item {
    padding: 10px 20px;
    border: 1px solid #ddd;
    background: #111;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
}
.size-item:hover{ 
    background: #111; 
    color: white; 
    border-color: #111; 
}

.actions { 
    display: flex; 
    flex-direction: column; 
    gap: 15px;
    margin-top: 20px; 
}
        
.btn-buy {
    background: #ff6600;
    color: white;
    padding: 18px;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
    transition: 0.3s;
}
.btn-buy:hover { 
    background: #e65c00; 
    transform: translateY(-2px); 
}

.btn-cart {
    background: transparent;
    color: white;
    padding: 15px;
    border: 2px solid white;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}
.btn-cart:hover { 
    background: #111; 
    color: white; 
}
