/* Additional styles for new pages and enhanced components */

/* Page Hero Sections */
.page-hero {
    background: #000000; /* Changed to black */
    padding: 80px 0;
    text-align: center;
}

.page-title {
    font-size: 3rem;
    color: #FFD700; /* Changed to golden */
    margin-bottom: 15px;
}

.page-subtitle {
    font-size: 1.25rem;
    color: #FFD700; /* Changed to golden */
    margin-bottom: 0;
}

/* About Page Styles */
.about-content {
    padding: 60px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 60px;
}

.about-text h2 {
    color: #FFD700; /* Changed to golden */
    margin-bottom: 20px;
    font-size: 2.2rem;
}

.about-text p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: #FFD700; /* Changed to golden */
}

.about-text ul {
    list-style: none;
    margin: 20px 0;
}

.about-text ul li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.about-text ul li i {
    color: #e91e63;
    margin-right: 10px;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Team Section */
.team-section {
    padding: 60px 0;
    background-color: #000000; /* Changed to black */
}

.team-section h2 {
    text-align: center;
    color: #FFD700; /* Changed to golden */
    margin-bottom: 50px;
    font-size: 2.5rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.team-member {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 15px;
    object-fit: cover;
}

.team-member h3 {
    color: #880e4f;
    margin-bottom: 5px;
}

.team-member p {
    color: #666;
}

/* Contact Page Styles */
.contact-content {
    padding: 60px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.contact-info h2,
.contact-form h2 {
    color: #e91e63;
    margin-bottom: 20px;
}

.contact-details {
    margin: 30px 0;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.contact-item i {
    color: #e91e63;
    font-size: 1.2rem;
    margin-right: 15px;
    margin-top: 5px;
}

.contact-item h4 {
    margin-bottom: 5px;
    color: #880e4f;
}

.contact-item p {
    margin: 0;
    color: #555;
}

/* Contact Form */
.contact-form {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #880e4f;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 1rem;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background-color: #e91e63;
    color: #fff;
    border: none;
    padding: 15px 30px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 1.1rem;
    transition: background-color 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    background-color: #ad1457;
}

/* Map Section */
.map-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.map-section h2 {
    text-align: center;
    color: #e91e63;
    margin-bottom: 30px;
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Enhanced Product Cards */
.product-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.product-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image {
    transform: scale(1.05);
}

.product-info {
    padding: 20px;
}

.product-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: #880e4f;
    margin-bottom: 8px;
}

.product-price {
    font-size: 1.3rem;
    color: #e91e63;
    font-weight: 600;
    margin-bottom: 10px;
}

.product-rating {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.stars {
    color: #ffc107;
    margin-right: 5px;
}

.rating-text {
    font-size: 0.9rem;
    color: #666;
}

.product-badges {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 10;
}

.badge {
    display: inline-block;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-right: 5px;
    margin-bottom: 5px;
}

.badge-new {
    background-color: #4caf50;
    color: #fff;
}

.badge-sale {
    background-color: #f44336;
    color: #fff;
}

.badge-bestseller {
    background-color: #ff9800;
    color: #fff;
}

.product-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.add-to-cart-btn,
.wishlist-btn,
.quick-view-btn {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.add-to-cart-btn {
    background-color: #e91e63;
    color: #fff;
}

.add-to-cart-btn:hover {
    background-color: #ad1457;
}

.wishlist-btn {
    background-color: #fff;
    color: #e91e63;
    border: 1px solid #e91e63;
}

.wishlist-btn:hover {
    background-color: #fce4ec;
}

.quick-view-btn {
    background-color: #f0f0f0;
    color: #333;
}

.quick-view-btn:hover {
    background-color: #ddd;
}

/* Enhanced Filters */
.filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
}

.filter-btn {
    background-color: #f0f0f0;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
    background-color: #e91e63;
    color: #fff;
}

/* Sort Options */
.sort-options {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    gap: 10px;
}

.sort-options label {
    color: #880e4f;
    font-weight: 600;
}

.sort-options select {
    padding: 8px 15px;
    border: 1px solid #ddd;
    border-radius: 20px;
    background-color: #fff;
    color: #333;
}

/* Sort Container */
.sort-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
    gap: 10px;
}

.sort-container label {
    color: #FFD700; /* Golden color */
    font-weight: 600;
    font-size: 1rem;
}

.sort-select {
    padding: 10px 20px;
    border: 2px solid #FFD700; /* Golden border */
    border-radius: 25px;
    background-color: #000000; /* Black background */
    color: #FFD700; /* Golden text */
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sort-select:hover {
    background-color: #FFD700; /* Golden background on hover */
    color: #000000; /* Black text on hover */
}

.sort-select:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.3); /* Golden focus glow */
}

/* Load More Button */
.load-more-container {
    text-align: center;
    margin-top: 40px;
}

.load-more-btn {
    background-color: #e91e63;
    color: #fff;
    border: none;
    padding: 15px 30px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 1.1rem;
    transition: background-color 0.3s ease;
}

.load-more-btn:hover {
    background-color: #ad1457;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .filters {
        flex-direction: column;
        align-items: center;
    }
    
    .filter-btn {
        margin-bottom: 10px;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 2rem;
    }
    
    .page-subtitle {
        font-size: 1rem;
    }
}
