/* Buying Page Specific Styles */

.price-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.price-category {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.price-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.6s ease;
}

.price-category:hover::before {
    left: 100%;
}

.price-category:hover {
    transform: translateY(-10px);
    border-color: var(--primary-gold);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
}

.price-category h3 {
    font-size: 1.8rem;
    color: var(--primary-gold);
    margin-bottom: 30px;
    font-weight: 300;
    text-align: center;
}

.brand-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.brand-item {
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.brand-item h4 {
    font-size: 1.3rem;
    color: var(--primary-gold);
    margin-bottom: 10px;
    font-weight: 400;
}

.price {
    font-size: 1.1rem;
    color: var(--primary-gold);
    font-weight: 600;
    margin-bottom: 10px;
}

.brand-item p {
    color: var(--text-light);
    line-height: 1.5;
    opacity: 0.9;
    font-size: 0.95rem;
}

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

.retailer-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.retailer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.6s ease;
}

.retailer-card:hover::before {
    left: 100%;
}

.retailer-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-gold);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
}

.retailer-card h3 {
    font-size: 1.5rem;
    color: var(--primary-gold);
    margin-bottom: 25px;
    font-weight: 300;
    text-align: center;
}

.retailer-card ul {
    list-style: none;
    padding: 0;
}

.retailer-card li {
    padding: 12px 0;
    color: var(--text-light);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    line-height: 1.5;
}

.retailer-card li:last-child {
    border-bottom: none;
}

.retailer-card strong {
    color: var(--primary-gold);
    font-weight: 500;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.tip-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.tip-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.6s ease;
}

.tip-card:hover::before {
    left: 100%;
}

.tip-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-gold);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
}

.tip-card h3 {
    font-size: 1.3rem;
    color: var(--primary-gold);
    margin-bottom: 15px;
    font-weight: 300;
}

.tip-card p {
    color: var(--text-light);
    line-height: 1.6;
    opacity: 0.9;
}
