/* ==========================================================================
   Shubh Shringaar - Main Stylesheet
   ========================================================================== */

/* Google Fonts
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&display=swap');

/* Common Styles for Shubh Shringaar Website */

/* ==================== Base Styles ==================== */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Quicksand', sans-serif;
    color: #1a1a1a;
    background-color: #ffffff;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Quicksand', serif;
}

/* ==================== Text Selection ==================== */
::selection {
    background: #da1389;
    color: #ffffff;
}

/* ==================== Navbar Glass Effect ==================== */
.navbar-glass {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.navbar-glass.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

/* ==================== Modern Buttons ==================== */
.btn-modern {
    display: inline-block;
    padding: 18px 48px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: #da1389;
    color: #ffffff;
    border: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
    cursor: pointer;
}

.btn-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #2c93b9;
    transition: left 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.btn-modern:hover::before {
    left: 0;
}

.btn-outline-modern {
    display: inline-block;
    padding: 18px 48px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: transparent;
    color: #2c93b9;
    border: 2px solid #2c93b9;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.btn-outline-modern:hover {
    background: #2c93b9;
    color: #ffffff;
}

/* ==================== Accent Line ==================== */
.accent-line {
    width: 60px;
    height: 2px;
    background: #da1389;
    margin: 0 auto 2rem;
}

/* ==================== Modern Cards ==================== */
.modern-card {
    background: #ffffff;
    border-radius: 2px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0,0,0,0.05);
}

.modern-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.12);
    border-color: #da1389;
}

/* ==================== WhatsApp Float Button ==================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float i {
    color: white;
    font-size: 1.8rem;
}

/* ==================== Feature Icons ==================== */
.feature-icon-modern {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #edf2fa;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    transition: all 0.4s ease;
}

.feature-icon-modern i {
    font-size: 2rem;
    color: #da1389;
    transition: all 0.4s ease;
}

.feature-item:hover .feature-icon-modern {
    background: #da1389;
    transform: scale(1.1);
}

.feature-item:hover .feature-icon-modern i {
    color: #ffffff;
}

/* ==================== Form Styles ==================== */
.form-input {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e5e5e5;
    border-radius: 2px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: #2c93b9;
}

.form-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #1a1a1a;
    margin-bottom: 8px;
}

/* ==================== Selected Products Modal ==================== */
.selected-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    overflow-y: auto;
    align-items: center;
    justify-content: center;
}

.selected-modal.show {
    display: flex;
}

.selected-modal-content {
    background: white;
    border-radius: 4px;
    max-width: 900px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    margin: 2rem;
}

.selected-modal-header {
    padding: 2rem;
    border-bottom: 1px solid #e5e5e5;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.selected-modal-body {
    padding: 2rem;
}

.selected-product-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    border: 1px solid #e5e5e5;
    border-radius: 2px;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.selected-product-item:hover {
    border-color: #da1389;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.selected-product-item img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 2px;
}

.selected-product-info {
    flex: 1;
}

/* Selected Products Button in Navigation */
.selected-products-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: #1a1a1a;
    transition: color 0.3s ease;
    padding: 0.5rem;
    position: relative;
}

.selected-products-btn:hover {
    color: #da1389;
}

/* Hide the floating button since we have it in navigation now */
.floating-selected-btn {
    display: none !important;
}

/* ==================== Utility Classes ==================== */
.d-none {
    display: none !important;
}

/* ==================== Mobile Responsive ==================== */
@media (max-width: 768px) {
    .btn-modern, .btn-outline-modern {
        padding: 14px 32px;
        font-size: 12px;
    }

    .selected-product-item {
        flex-direction: column;
    }

    .selected-product-item img {
        width: 100%;
        height: 200px;
    }
}