/* === DIVISION PAGE CSS === */
/* Specific styles for division product pages */

/* Division Hero Section */
.division-hero {
    position: relative;
    padding: 5rem 0 3rem;
    margin-top: 80px;
    overflow: hidden;
}

.beginner-division {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.9), rgba(16, 185, 129, 0.8));
}

.junior-division {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.9), rgba(244, 63, 94, 0.8));
}

.intermediate-division {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.9), rgba(6, 182, 212, 0.8));
}

.experienced-division {
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.9), rgba(245, 158, 11, 0.8));
}

.division-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../assets/patterns/hexagons.svg');
    background-size: cover;
    opacity: 0.1;
    z-index: 0;
}

.division-banner {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.division-info {
    color: white;
}

.division-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: white;
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.division-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.division-hero p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
}

.division-image {
    text-align: center;
}

.division-image img {
    max-width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transform: perspective(1000px) rotateY(-5deg);
    transition: all 0.4s ease;
}

.division-image img:hover {
    transform: perspective(1000px) rotateY(0deg) translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

/* Division Description Section */
.division-description {
    padding: 5rem 0;
}

.division-description .card {
    background: linear-gradient(145deg, rgba(30, 58, 138, 0.2), rgba(49, 46, 129, 0.2));
    backdrop-filter: blur(10px);
    border: none;
    padding: 3rem;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.division-description h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.division-description h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #93c5fd;
}

.division-description p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.feature-list {
    margin-top: 1rem;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.feature-list li i, 
.feature-list li svg {
    color: #10b981;
    margin-right: 1rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

/* Product Collections */
.collections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.collection-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.collection-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.3);
}

.collection-card.featured {
    border: 1px solid rgba(245, 158, 11, 0.5);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(245, 158, 11, 0.1));
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2), 0 0 20px rgba(245, 158, 11, 0.2);
    z-index: 2;
}

.collection-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.featured-banner {
    position: absolute;
    top: 20px;
    right: -35px;
    background: #f59e0b;
    color: white;
    padding: 5px 40px;
    font-size: 0.875rem;
    font-weight: 600;
    transform: rotate(45deg);
    z-index: 3;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.collection-image {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.collection-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.8s ease;
}

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

.collection-badge {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(59, 130, 246, 0.9);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    z-index: 2;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.collection-details {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.collection-details h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: #ffffff;
}

.collection-details p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.collection-features {
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.collection-features li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.collection-features li i {
    color: #10b981;
    margin-right: 10px;
    margin-top: 3px;
    flex-shrink: 0;
}

.collection-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: auto;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
}

.original-price {
    font-size: 1rem;
    text-decoration: line-through;
    color: rgba(255, 255, 255, 0.6);
    margin-right: 0.5rem;
}

.price-period {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    margin-left: 0.5rem;
}

/* Sample Player Section */
.sample-player {
    padding: 5rem 0;
    background: linear-gradient(145deg, rgba(17, 24, 39, 0.7), rgba(30, 58, 138, 0.5));
}

.section-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
    font-size: 1.125rem;
}

.player-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.player-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 20px rgba(59, 130, 246, 0.2);
}

.player-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
}

.player-controls {
    display: flex;
    flex-direction: column;
}

.player-image {
    position: relative;
    width: 100%;
    padding-top: 100%; /* Maintain square aspect ratio */
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.player-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.8s ease;
}

.controls-panel {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.song-info {
    margin-bottom: 1.5rem;
}

.song-info h3 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
    color: white;
}

.song-reference {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

.control-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.control-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(59, 130, 246, 0.2);
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.control-btn:hover {
    background: rgba(59, 130, 246, 0.4);
    transform: scale(1.1);
}

#play-pause {
    width: 60px;
    height: 60px;
    background: rgba(59, 130, 246, 0.3);
    font-size: 1.2rem;
}

#play-pause:hover {
    background: rgba(59, 130, 246, 0.6);
}

.progress-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.progress-bar {
    flex-grow: 1;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    position: absolute;
    height: 100%;
    background: linear-gradient(to right, #3b82f6, #8b5cf6);
    width: 0;
    transition: width 0.1s linear;
}

.time-display {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    min-width: 80px;
    text-align: right;
}

.player-content {
    display: flex;
    flex-direction: column;
}

.verse-display {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding