/* Blesset Custom Theme Styles */

:root {
    --blesset-maroon: #7b0a0a;
    --blesset-maroon-dark: #5c0000;
    --blesset-gold: #cda051;
    --blesset-gold-light: #e6c587;
    --blesset-cream: #fdf8eb;
    --blesset-text-dark: #4a2511;
    --blesset-white: #ffffff;
}

body {
    background-color: var(--blesset-cream);
    font-family: 'Public Sans', sans-serif;
    color: var(--blesset-text-dark);
}

/* Header Styles */
.blesset-header-top {
    background-color: var(--blesset-cream);
    padding: 15px 0;
    border-bottom: 2px solid var(--blesset-maroon);
}

.blesset-logo img {
    max-height: 60px;
}

.blesset-search-bar {
    border: 1px solid #e0d5c1;
    border-radius: 4px;
    overflow: hidden;
}

.blesset-search-input {
    border: none;
    padding: 10px 15px;
    width: 100%;
    outline: none;
}

.blesset-search-btn {
    background-color: var(--blesset-maroon);
    color: var(--blesset-white);
    border: none;
    padding: 10px 20px;
    cursor: pointer;
}

.blesset-header-actions .action-item {
    color: var(--blesset-maroon);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 20px;
    text-decoration: none;
}

.blesset-cart-btn {
    background-color: var(--blesset-maroon);
    color: var(--blesset-white);
    padding: 10px 20px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}
.blesset-cart-btn:hover {
    color: var(--blesset-white);
    background-color: var(--blesset-maroon-dark);
}

/* Navigation Bar */
.blesset-nav-bar {
    background-color: var(--blesset-maroon);
    color: var(--blesset-white);
}

.blesset-nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 30px;
}

.blesset-nav-list li a {
    color: var(--blesset-white);
    text-decoration: none;
    padding: 15px 0;
    display: inline-block;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
}

.blesset-nav-list li a:hover,
.blesset-nav-list li a.active {
    color: var(--blesset-gold);
    border-bottom: 2px solid var(--blesset-gold);
}

/* Hero Banner */
.blesset-hero-section {
    padding: 30px 0;
}
.blesset-hero-banner {
    background: linear-gradient(135deg, #fdf8eb 0%, #f3e6cd 100%);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    border: 1px solid #e8dcc4;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: auto !important;
}
.blesset-hero-banner img {
    width: 100% !important;
    height: auto !important;
    display: block !important;
    object-fit: contain !important;
}
.blesset-hero-banner:hover {
    transform: scale(1.02);
}
.blesset-hero-content {
    padding: 60px;
    max-width: 500px;
}
.blesset-hero-subtitle {
    color: var(--blesset-gold);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 14px;
    margin-bottom: 10px;
}
.blesset-hero-title {
    color: var(--blesset-maroon);
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 10px;
}
.blesset-hero-script {
    font-family: 'Brush Script MT', cursive, serif;
    color: var(--blesset-gold);
    font-size: 36px;
    margin-bottom: 30px;
}
.blesset-features-list {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    font-size: 13px;
    color: var(--blesset-text-dark);
}
.blesset-features-list i {
    color: var(--blesset-gold);
    margin-right: 5px;
}
.blesset-btn-primary {
    background-color: var(--blesset-maroon);
    color: var(--blesset-white);
    padding: 12px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
}
.blesset-btn-primary:hover {
    background-color: var(--blesset-maroon-dark);
    color: var(--blesset-white);
}

/* Sections Global */
.blesset-section-title {
    color: var(--blesset-maroon);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}
.blesset-section-title::after {
    content: '';
    height: 2px;
    background-color: var(--blesset-gold);
    flex-grow: 1;
    max-width: 100px;
}
.blesset-section-link {
    margin-left: auto;
    color: var(--blesset-maroon);
    font-weight: 600;
    text-decoration: none;
    border: 1px solid var(--blesset-gold);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
}

/* Featured Collections */
.blesset-collection-card {
    background: #fdf8eb;
    border: 1px solid #e8dcc4;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    height: 100%;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
    display: flex;
    align-items: center;
}
.blesset-collection-card:hover {
    transform: scale(1.03) translateY(-5px);
    box-shadow: 0 12px 24px rgba(123,10,10,0.15);
}
.blesset-collection-card .blesset-collection-img {
    transition: transform 0.5s ease;
}
.blesset-collection-card:hover .blesset-collection-img {
    transform: scale(1.1);
}
.blesset-collection-content {
    padding: 30px;
    flex: 1;
    z-index: 2;
}
.blesset-collection-title {
    color: var(--blesset-maroon);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
}
.blesset-collection-subtitle {
    color: var(--blesset-text-dark);
    font-size: 14px;
    margin-bottom: 20px;
}
.blesset-collection-img {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 50%;
    object-fit: cover;
    z-index: 1;
    /* gradient fade from left */
    mask-image: linear-gradient(to right, transparent 0%, black 50%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 50%);
}

/* Puja By Occasion */
.blesset-occasion-card {
    background: #fff;
    border-radius: 16px;
    padding: 15px;
    text-align: center;
    border: 1px solid #f0e8d5;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}
.blesset-occasion-card:hover {
    border-color: var(--blesset-gold);
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(123,10,10,0.1);
}
.blesset-occasion-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 15px;
    transition: transform 0.5s ease;
}
.blesset-occasion-card:hover .blesset-occasion-img {
    transform: scale(1.08);
}
.blesset-occasion-title {
    color: var(--blesset-maroon);
    font-weight: 600;
    margin-bottom: 5px;
}
.blesset-occasion-link {
    background-color: var(--blesset-maroon);
    color: var(--blesset-white);
    padding: 8px 20px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}
.blesset-occasion-link:hover {
    background-color: var(--blesset-maroon-dark);
    color: var(--blesset-white);
}

/* Why Choose Section */
.blesset-why-choose {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    border: 1px solid #f0e8d5;
}
.blesset-why-title {
    color: var(--blesset-maroon);
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}
.blesset-why-subtitle {
    color: var(--blesset-text-dark);
    margin-bottom: 30px;
}
.blesset-why-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}
.blesset-why-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.blesset-why-list li i {
    color: var(--blesset-gold);
}

/* Stats Cards */
.blesset-stat-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    border: 1px solid #f0e8d5;
    height: 100%;
}
.blesset-stat-number {
    color: var(--blesset-maroon);
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}
.blesset-stat-text {
    color: var(--blesset-text-dark);
    font-size: 14px;
}

/* How It Works Banner */
.blesset-steps-banner {
    background-color: var(--blesset-maroon);
    border-radius: 16px;
    padding: 30px 40px;
    color: var(--blesset-white);
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 50px;
}
.blesset-steps-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--blesset-white);
    display: flex;
    align-items: center;
    gap: 15px;
}
.blesset-steps-title::before,
.blesset-steps-title::after {
    content: '';
    height: 1px;
    width: 30px;
    background: var(--blesset-gold);
}
.blesset-step-item {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}
.blesset-step-icon {
    width: 50px;
    height: 50px;
    border: 2px dashed var(--blesset-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blesset-gold);
    font-size: 24px;
}
.blesset-step-content h4 {
    font-size: 15px;
    margin-bottom: 5px;
    color: var(--blesset-white);
}
.blesset-step-content p {
    font-size: 12px;
    margin: 0;
    color: #ffd8a8;
}
.blesset-step-arrow {
    color: var(--blesset-gold);
    opacity: 0.5;
}

/* --- Phase 2 Full Page Additions --- */

/* Features Band */
.blesset-features-band {
    background-color: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    margin-top: 20px;
}
.blesset-feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px;
}
.blesset-feature-icon {
    font-size: 28px;
    color: var(--blesset-gold);
}
.blesset-feature-text h5 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 2px;
    color: var(--blesset-maroon);
}
.blesset-feature-text p {
    font-size: 11px;
    color: var(--blesset-text-dark);
    margin: 0;
}

/* Shop by Puja - Circular Icons */
.blesset-puja-circle-card {
    text-align: center;
    text-decoration: none;
    display: block;
    transition: transform 0.3s;
}
.blesset-puja-circle-card:hover {
    transform: translateY(-5px);
}
.blesset-puja-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: var(--blesset-cream);
    border: 2px solid #f0e8d5;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    transition: all 0.3s;
    box-shadow: inset 0 0 15px rgba(205,160,81,0.1);
}
.blesset-puja-circle:hover {
    border-color: var(--blesset-gold);
    background-color: #fff;
    box-shadow: 0 5px 15px rgba(205,160,81,0.2);
}
.blesset-puja-circle i {
    font-size: 40px;
    color: var(--blesset-gold);
}
.blesset-puja-circle-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--blesset-text-dark);
}

/* Not Sure Card */
.blesset-notsure-card {
    background-color: var(--blesset-cream);
    border: 1px dashed var(--blesset-gold);
    border-radius: 12px;
    padding: 20px;
    height: 100%;
}

/* Product Cards */
.blesset-product-card {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #f0e8d5;
    padding: 15px;
    position: relative;
    transition: all 0.3s;
    text-decoration: none;
    display: block;
}
.blesset-product-card:hover {
    border-color: var(--blesset-gold);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.blesset-product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--blesset-gold);
    color: #fff;
    font-size: 10px;
    padding: 3px 8px;
    border-radius: 4px;
    font-weight: 700;
    z-index: 2;
}
.blesset-product-wishlist {
    position: absolute;
    top: 15px;
    right: 15px;
    color: #ccc;
    z-index: 2;
}
.blesset-product-img {
    height: 150px;
    object-fit: cover;
    width: 100%;
    margin-bottom: 15px;
    border-radius: 8px;
}
.blesset-product-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--blesset-text-dark);
    margin-bottom: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.blesset-product-price {
    font-size: 16px;
    font-weight: 700;
    color: var(--blesset-maroon);
}
.blesset-product-price del {
    font-size: 12px;
    color: #999;
    font-weight: 400;
    margin-left: 5px;
}

/* Why Choose Blesset 5-card grid */
.blesset-why-card-vertical {
    background: #fff;
    border: 1px solid #f0e8d5;
    border-radius: 12px;
    padding: 20px 15px;
    text-align: center;
    height: 100%;
    transition: all 0.3s;
}
.blesset-why-card-vertical:hover {
    border-color: var(--blesset-gold);
    transform: translateY(-5px);
}
.blesset-why-icon-gold {
    font-size: 40px;
    color: var(--blesset-gold);
    margin-bottom: 15px;
}
.blesset-why-card-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--blesset-maroon);
    margin-bottom: 10px;
}
.blesset-why-card-text {
    font-size: 12px;
    color: var(--blesset-text-dark);
}

/* Special Offers Banner */
.blesset-special-offer {
    background-color: var(--blesset-maroon-dark);
    color: var(--blesset-white);
    border-radius: 12px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    height: 100%;
}
.blesset-special-offer::after {
    content: '';
    position: absolute;
    right: -20px;
    bottom: -20px;
    width: 150px;
    height: 150px;
    background: url('../img/placeholder.jpg');
    background-size: cover;
    opacity: 0.3;
}

/* Testimonials */
.blesset-testimonial-card {
    background: var(--blesset-cream);
    border-radius: 12px;
    padding: 30px;
    border: 1px solid #f0e8d5;
    position: relative;
}
.blesset-quote-icon {
    color: var(--blesset-gold);
    font-size: 24px;
    margin-bottom: 15px;
}
.blesset-testimonial-text {
    font-size: 13px;
    color: var(--blesset-text-dark);
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}
.blesset-testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}
.blesset-author-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}
.blesset-author-info h6 {
    margin: 0;
    font-size: 14px;
    font-weight: 700;
    color: var(--blesset-maroon);
}
.blesset-author-info p {
    margin: 0;
    font-size: 11px;
    color: #777;
}

/* Blog Cards */
.blesset-blog-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #f0e8d5;
    transition: all 0.3s;
}
.blesset-blog-card:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.blesset-blog-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}
.blesset-blog-content {
    padding: 20px;
}
.blesset-blog-meta {
    font-size: 11px;
    color: var(--blesset-gold);
    margin-bottom: 10px;
}
.blesset-blog-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--blesset-text-dark);
    margin-bottom: 15px;
    line-height: 1.4;
}

/* Newsletter */
.blesset-newsletter {
    background: var(--blesset-cream);
    border: 1px solid #f0e8d5;
    border-radius: 12px;
    padding: 30px;
    height: 100%;
}
.blesset-newsletter-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--blesset-maroon);
    margin-bottom: 10px;
}
.blesset-newsletter-text {
    font-size: 12px;
    color: var(--blesset-text-dark);
    margin-bottom: 20px;
}
.blesset-newsletter-input {
    border: 1px solid #e0d5c1;
    border-radius: 4px;
    padding: 10px 15px;
    width: 100%;
    font-size: 13px;
}

/* Footer */
.blesset-footer {
    background-color: #2b1111;
    color: #e0d5c1;
    padding: 60px 0 20px;
}
.blesset-footer-title {
    color: var(--blesset-gold);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
}
.blesset-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.blesset-footer-links li {
    margin-bottom: 10px;
}
.blesset-footer-links li a {
    color: #e0d5c1;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s;
}
.blesset-footer-links li a:hover {
    color: var(--blesset-gold);
}
.blesset-social-icons {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}
.blesset-social-icons a {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: var(--blesset-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s;
}
.blesset-social-icons a:hover {
    background: var(--blesset-gold);
    color: #2b1111;
}

.blesset-social-icon, .blesset-btn-zoom { 
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important; 
}
.blesset-social-icon:hover, .blesset-btn-zoom:hover { 
    transform: scale(1.15) !important; 
}

/* Horizontal Scroll for Collections */
.blesset-horizontal-scroll {
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    padding-bottom: 15px;
    -webkit-overflow-scrolling: touch;
}
.blesset-horizontal-scroll > div {
    flex: 0 0 auto;
}
.blesset-horizontal-scroll::-webkit-scrollbar {
    height: 6px;
}
.blesset-horizontal-scroll::-webkit-scrollbar-track {
    background: #fdf1d6;
    border-radius: 3px;
}
.blesset-horizontal-scroll::-webkit-scrollbar-thumb {
    background: rgba(224, 183, 89, 0.7);
    border-radius: 3px;
}
.blesset-horizontal-scroll::-webkit-scrollbar-thumb:hover {
    background: rgba(224, 183, 89, 1);
}

/* ==========================================
   Responsive Improvements for Homepage & Auth
   ========================================== */
@media (max-width: 991px) {
    .blesset-header-top {
        padding: 10px 0;
    }
    .blesset-logo img {
        max-height: 45px;
    }
    .blesset-header-actions .action-item {
        margin-left: 10px;
        font-size: 12px;
    }
    .blesset-cart-btn {
        padding: 8px 12px;
        font-size: 13px;
    }
    .blesset-nav-list {
        gap: 15px;
        overflow-x: auto;
        white-space: nowrap;
        padding: 5px 15px;
        -webkit-overflow-scrolling: touch;
    }
    .blesset-nav-list li a {
        padding: 10px 0;
        font-size: 13px;
    }
    .right-content {
        margin-top: 0 !important;
        border-radius: 12px !important;
        padding: 1.25rem !important;
    }
}

/* Global horizontal overflow prevention */
html, body {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
    margin: 0 !important;
    padding: 0 !important;
}

.aiz-main-wrapper,
.blesset-home-wrapper {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
}

@media (max-width: 768px) {
    html, body, .aiz-main-wrapper, .blesset-home-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
    }
    .container, .container-fluid {
        padding-left: 15px !important;
        padding-right: 15px !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    .blesset-hero-banner {
        height: auto !important;
        border-radius: 8px !important;
    }
    .blesset-hero-section {
        padding: 10px 0 !important;
    }
    .blesset-steps-banner {
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        padding: 24px 18px !important;
        margin-top: 20px !important;
        border-radius: 12px !important;
    }
    .blesset-steps-title {
        font-size: 20px !important;
        margin-bottom: 20px !important;
    }
    .blesset-step-item {
        display: flex !important;
        flex: 0 0 100% !important;
        width: 100% !important;
        max-width: 100% !important;
        margin-bottom: 18px !important;
        align-items: center !important;
        gap: 15px !important;
    }
    .blesset-step-item:last-child {
        margin-bottom: 0 !important;
    }
    .blesset-step-icon {
        width: 46px !important;
        height: 46px !important;
        min-width: 46px !important;
        flex-shrink: 0 !important;
        font-size: 22px !important;
    }
    .blesset-step-content {
        flex: 1 1 auto !important;
    }
    .blesset-step-content h4 {
        font-size: 14px !important;
        margin-bottom: 3px !important;
    }
    .blesset-step-content p {
        font-size: 12px !important;
    }
    .aiz-card-box, .product-box {
        margin-bottom: 12px;
    }
    .blesset-footer {
        padding: 30px 0 15px;
        text-align: center;
    }
    .blesset-social-icons {
        justify-content: center;
    }
    .slick-slider, .slick-list {
        max-width: 100% !important;
        overflow: hidden;
    }
    .img-fit {
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .blesset-hero-banner {
        height: auto !important;
        border-radius: 8px !important;
    }
    .blesset-header-actions {
        display: flex;
        justify-content: space-around;
        width: 100%;
        margin-top: 8px;
    }
    .blesset-search-bar {
        margin: 8px 0;
    }
    .form-control {
        font-size: 14px;
    }
    .btn-mobile-full {
        width: 100% !important;
        display: block !important;
    }
}

@media (max-width: 420px) {
    .blesset-hero-banner {
        height: auto !important;
        border-radius: 8px !important;
    }
}



