/* Attractive Headings for Home Page */
:root {
    --heading-gold: #D4AF37;
    --heading-gold-dark: #B8941F;
    --heading-text: #2C2C2C;
    --heading-text-light: #666666;
    --heading-sparkle: #FFD700;
}

/* Mobile Responsive Headings */
@media (max-width: 768px) {
    .section-title {
        font-size: 1.5rem !important;
        margin-bottom: 0.5rem !important;
        line-height: 1.2 !important;
    }
    
    .section-title::after {
        width: 30px !important;
        height: 2px !important;
        bottom: -4px !important;
    }
    
    .section-subtitle {
        font-size: 0.9rem !important;
        margin-bottom: 1rem !important;
    }
    
    .card-title {
        font-size: 1rem !important;
        margin-bottom: 0.25rem !important;
    }
}

/* Extra Small Mobile */
@media (max-width: 575px) {
    .section-title {
        font-size: 1.25rem !important;
        margin-bottom: 0.25rem !important;
    }
    
    .section-title::after {
        width: 25px !important;
        height: 1.5px !important;
    }
}

/* Inline Heading and Button Layout */
@media (max-width: 768px) {
    .align-items-center.d-flex.flex-wrap.justify-content-between {
        align-items: center !important;
        flex-direction: row !important;
        gap: 0.75rem !important;
    }
    
    .align-items-center.d-flex.flex-wrap.justify-content-between .section-title {
        margin-bottom: 0 !important;
        flex: 1;
        min-width: 0;
    }
    
    .align-items-center.d-flex.flex-wrap.justify-content-between .viewmorebtn {
        flex-shrink: 0;
        margin-left: auto;
    }
}

/* Extra Small Mobile Layout - Keep inline for very small screens too */
@media (max-width: 575px) {
    .align-items-center.d-flex.flex-wrap.justify-content-between {
        flex-direction: row !important;
        align-items: center !important;
        gap: 0.5rem !important;
    }
    
    .align-items-center.d-flex.flex-wrap.justify-content-between .section-title {
        margin-bottom: 0 !important;
        flex: 1;
        min-width: 0;
    }
    
    .align-items-center.d-flex.flex-wrap.justify-content-between .viewmorebtn {
        margin-left: auto !important;
        flex-shrink: 0;
    }
}

/* Ensure proper text wrapping for very long headings */
@media (max-width: 575px) {
    .align-items-center.d-flex.flex-wrap.justify-content-between .section-title {
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    /* If heading is too long, allow wrapping */
    .align-items-center.d-flex.flex-wrap.justify-content-between {
        flex-wrap: wrap !important;
    }
    
    .align-items-center.d-flex.flex-wrap.justify-content-between .viewmorebtn {
        margin-top: 0.25rem;
        margin-left: 0 !important;
        align-self: flex-start;
    }
}

/* Main Section Titles */
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--heading-text);
    margin-bottom: 0.75rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #2C2C2C 0%, #D4AF37 50%, #2C2C2C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--heading-gold) 0%, var(--heading-gold-dark) 100%);
    border-radius: 2px;
}

/* Section Subtitles */
.section-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.125rem;
    color: var(--heading-text-light);
    margin-bottom: 2rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    position: relative;
}

.section-subtitle::before {
    content: '✨';
    margin-right: 8px;
    font-size: 1em;
    color: var(--heading-sparkle);
}

.section-subtitle::after {
    content: '✨';
    margin-left: 8px;
    font-size: 1em;
    color: var(--heading-sparkle);
}

/* Product Card Titles */
.card-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--heading-text);
    margin-bottom: 0.5rem;
    line-height: 1.3;
    letter-spacing: 0.01em;
}

/* Brand Names */
.categories-card-text h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--heading-text);
    margin-bottom: 0;
    letter-spacing: 0.02em;
}

/* Category Names in Cards */
.category-text-modern h5 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--heading-text);
    margin: 0;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    line-height: 1.3;
}

/* Price Headings */
.card-price {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--heading-gold);
    margin: 0;
    letter-spacing: 0.01em;
}

/* Special Video Section Title */
.video-section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--heading-text);
    margin-bottom: 0.75rem;
    line-height: 1.1;
    text-align: center;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, #2C2C2C 0%, #D4AF37 50%, #2C2C2C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.video-section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--heading-gold) 0%, var(--heading-gold-dark) 100%);
    border-radius: 2px;
}

.video-section-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25rem;
    color: var(--heading-text-light);
    margin-bottom: 3rem;
    font-weight: 300;
    text-align: center;
    letter-spacing: 0.08em;
    position: relative;
}

.video-section-subtitle::before {
    content: '💎';
    margin-right: 8px;
    font-size: 1.1em;
}

.video-section-subtitle::after {
    content: '💎';
    margin-left: 8px;
    font-size: 1.1em;
}

/* Brands Section Special Styling */
.brands-section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--heading-text);
    margin-bottom: 0.75rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #2C2C2C 0%, #D4AF37 50%, #2C2C2C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.brands-section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--heading-gold) 0%, var(--heading-gold-dark) 100%);
    border-radius: 2px;
}

/* Hover Effects for Interactive Headings */
.section-title.pointer:hover {
    transform: translateY(-2px);
    transition: transform 0.3s ease;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .section-title {
        font-size: 2.25rem;
    }
    
    .video-section-title {
        font-size: 2.5rem;
    }
    
    .brands-section-title {
        font-size: 2.25rem;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .video-section-title {
        font-size: 2.25rem;
    }
    
    .video-section-subtitle {
        font-size: 1.125rem;
        margin-bottom: 2.5rem;
    }
    
    .brands-section-title {
        font-size: 2rem;
    }
    
    .card-title {
        font-size: 1rem;
    }
    
    .card-price {
        font-size: 1.125rem;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.25rem;
    }
    
    .video-section-title {
        font-size: 2rem;
    }
    
    .video-section-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .brands-section-title {
        font-size: 1.75rem;
    }
    
    .card-title {
        font-size: 0.9rem;
    }
    
    .card-price {
        font-size: 1rem;
    }
    
    .category-text-modern h5 {
        font-size: 0.875rem;
    }
}
