/* Modern Jewellery Homepage Styles */

/* Color Variables */
:root {
    --primary-gold: #D4AF37;
    --primary-gold-light: #F4E7B8;
    --primary-gold-dark: #B8941F;
    --accent-rose: #E8B4B8;
    --text-dark: #ad7831;
    --text-light: #6B6B6B;
    --background-light: #FEFEFE;
    --background-accent: #F9F7F4;
    --gradient-primary: linear-gradient(135deg, #D4AF37 0%, #ad7831 100%);
    --gradient-accent: linear-gradient(135deg, #e0c398 0%, #d7a25c 100%);
    --shadow-light: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.12);
    --shadow-heavy: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Background Utilities */
.bg-light-accent {
    background-color: var(--background-accent) !important;
}

.bg-gradient-accent {
    background: var(--gradient-accent) !important;
}

/* Section Styling */
.modern-collection-section {
    position: relative;
    overflow: hidden;
}

.modern-collection-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 0%, rgba(212, 175, 55, 0.02) 50%, transparent 100%);
    pointer-events: none;
}

/* Section Headers */
.section-header {
    position: relative;
    z-index: 2;
    margin-bottom: 3rem;
}

.section-badge {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-light);
    transform: translateY(0);
    transition: all 0.3s ease;
    display: none;
}

.section-badge:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ad7831 !important;
    margin-bottom: 1rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Modern Product Cards */
.modern-product-card {
    background: white;
    border-radius: 20px;
    border: 1px solid #e1e1e1;
    overflow: hidden;
    /* box-shadow: var(--shadow-heavy); */
    transition: all 0.4s ease;
    position: relative;
    height: 100%;
}

.modern-product-card:hover {
    transform: translateY(-8px);
    /* box-shadow: var(--shadow-heavy); */
}

.product-image-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    background: var(--background-accent);
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.modern-product-card:hover .product-image {
    transform: scale(1.05);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(212, 175, 55, 0.8), rgba(232, 180, 184, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    opacity: 0;
    transition: all 0.3s ease;
}

.modern-product-card:hover .product-overlay {
    opacity: 1;
}

.wishlist-btn,
.quick-view-btn {
    width: 45px;
    height: 45px;
    border: none;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: var(--shadow-light);
}

.wishlist-btn:hover,
.quick-view-btn:hover {
    background: var(--primary-gold);
    color: white;
    transform: scale(1.1);
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-gold);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    z-index: 3;
}

.product-badge.bestseller {
    background: #E74C3C;
}

.product-info {
    padding: 1.5rem;
    text-align: center;
}

.product-title-home {
    font-size: 1.5rem;
    font-weight: 600;
    font-family: "Fraunces", sans-serif !important;
    color: var(--text-dark) !important;
    margin-bottom: 0.5rem;
    line-height: 1.3;
    overflow: ellipsis;
}

.product-price {
    font-size: 1.2rem !important;
    font-weight: 600;
    color: #444444 !important;
    margin: 0;
    font-family: "Rajdhani" !important;
}

/* Compact Product Cards for Sliders */
.modern-product-card.compact {
    border-radius: 15px;
}

.modern-product-card.compact .product-info {
    padding: 1rem;
}

.modern-product-card.compact .product-title-home {
    font-size: 1rem;
}

.modern-product-card.compact .product-price {
    font-size: 1.1rem;
}

/* Modern Buttons */
.modern-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 2rem;
    border-radius: 30px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.modern-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.modern-btn:hover::before {
    left: 100%;
}

.modern-btn-outline {
    background: transparent;
    color: var(--primary-gold-dark);
    border-color: var(--primary-gold);
}

.modern-btn-outline:hover {
    background: var(--gradient-primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

/* Category Cards */
.modern-category-card {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    height: 300px;
    box-shadow: var(--shadow-light);
    transition: all 0.4s ease;
}

.modern-category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
}

.category-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.category-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.modern-category-card:hover .category-image {
    transform: scale(1.05);
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(44, 44, 44, 0.7), rgba(212, 175, 55, 0.7));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.modern-category-card:hover .category-overlay {
    opacity: 1;
}

.category-content {
    text-align: center;
    color: white;
}

.category-title {
    color: #FEFEFE !important;
    font-family: "Fraunces", sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.category-btn {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1.5rem;
    background: white;
    color: var(--text-dark);
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.category-btn:hover {
    background: var(--primary-gold);
    color: white;
    transform: translateY(-2px);
}

/* Exclusive Section */
.modern-exclusive-section {
    position: relative;
    overflow: hidden;
}

.exclusive-image-section {
    position: relative;
    height: 100%;
    min-height: 600px;
}

.exclusive-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.exclusive-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    padding: 2rem;
    color: white;
}

.exclusive-image-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.exclusive-image-content p {
    font-size: 1rem;
    opacity: 0.9;
    margin: 0;
}

.exclusive-content-section {
    background: white;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Modern Tabs */
.modern-tabs-wrapper {
    margin-bottom: 2rem;
}

.modern-tabs {
    border: none;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.modern-tabs .nav-link {
    background: var(--background-accent);
    color: var(--text-light);
    border: 1px solid #ad7831;
    border-radius: 25px;
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.modern-tabs .nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    transition: left 0.3s ease;
    z-index: -1;
}

.modern-tabs .nav-link.active::before,
.modern-tabs .nav-link:hover::before {
    left: 0;
}

.modern-tabs .nav-link.active,
.modern-tabs .nav-link:hover {
    color: white !important;
    border-radius: 25px !important;
    background-color: #ad7831 !important;
}

.tab-pane {
    background-color: #fff !important;
}

.modern-tab-content {
    margin-top: 2rem;
}

/* Slider Styles */
.modern-slider-wrapper {
    position: relative;
}

.modern-product-slider {
    padding: 1rem 0;
}

.modern-slider-item {
    padding: 0 10px;
}

/* Responsive Design */
@media (max-width: 1199px) {
    .section-title {
        font-size: 2.2rem;
    }

    .exclusive-content-section {
        min-height: auto;
        padding: 3rem 2rem !important;
    }
}

/* Responsive Design - Continued */
@media (max-width: 991px) {
    .section-title {
        font-size: 2rem;
    }

    .section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .modern-tabs .nav-link {
        padding: 0.5rem 1rem;
    }

    .exclusive-hero-image {
        object-position: center top;
    }
}

@media (max-width: 767px) {
    .section-title {
        font-size: 1.75rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .category-title {
        font-size: 1.25rem;
    }

    .exclusive-image-content h3 {
        font-size: 1.25rem;
    }

    .exclusive-image-content p {
        font-size: 0.95rem;
    }

    .modern-btn {
        padding: 0.5rem 1.5rem;
    }
}

@media (max-width: 575px) {
    .section-title {
        font-size: 1.5rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
    }

    .product-title-home {
        font-size: 1rem;
    }

    .product-price {
        font-size: 1rem;
    }

    .category-title {
        font-size: 1rem;
    }

    .modern-tabs {
        /* flex-direction: column; */
    }
}

/* ------------------- Custom Dropdown Menu ------------------- */

.custom-dropdown {
    position: relative;
    display: inline-block;
}

.custom-dropdown .nav-link-custom {
    color: var(--text-dark);
    padding: 0.75rem 1rem;
    display: inline-flex;
    align-items: center;
    font-weight: 500;
    text-decoration: none;
    position: relative;
    z-index: 2;
    background: transparent;
    transition: color 0.3s ease;
}

.custom-dropdown .nav-link-custom i {
    margin-left: 5px;
    font-size: 0.8rem;
}

.custom-dropdown .nav-link-custom:hover {
    color: var(--primary-gold-dark);
}

.single-dropdown-wrap {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    min-width: 200px;
    padding: 0.75rem 0;
    box-shadow: var(--shadow-light);
    display: none;
    z-index: 1000;
    border-radius: 10px;
    animation: fadeIn 0.2s ease-in-out;
}

.custom-dropdown:hover .single-dropdown-wrap {
    display: block;
}

.single-dropdown {
    list-style: none;
    margin: 0;
    padding: 0;
}

.single-dropdown li {
    padding: 0;
}

.single-dropdown li a {
    display: block;
    padding: 0.65rem 1.25rem;
    color: var(--text-dark);
    font-size: 0.95rem;
    text-decoration: none;
    transition: background 0.3s ease, color 0.3s ease;
}

.single-dropdown li a:hover {
    background-color: var(--primary-gold-light);
    color: var(--text-dark);
    font-weight: 500;
    border-left: 3px solid var(--primary-gold-dark);
}

/* Dropdown Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.accordion-button:not(.collapsed)::after {
    background-image: url('../img/icon/up-arrow.svg');
    transform: none !important;
}

.accordion-button {
    font-family: 'Poly' !important;
    box-shadow: none !important;
    /* background-color: #ad7831 !important;
    color: white !important; */
    border: 1px solid #ad7831 !important;
    font-weight: 300 !important;
    transition: all .7s ease !important;
}

.accordion-button:focus {
    border: 1px solid #ad7831 !important;
}


.accordion-header {
    /* border: 1px solid #ad7831 !important;
    border_bottom: none !important; */
}

.accordion-item {
    border: none !important;
    box-shadow: none !important;
}

.accordion-collapse {
    border: 1px solid #ad7831 !important;
    border-top: none !important;
}

.accordion-button:not(.collapsed) {
    border-bottom: none !important;
}

.founders-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f9ece3 100%);
    overflow: hidden;
}
/* .section-header .section-badge {
    display: inline-block;
    background: #ad7831;
    color: #fff;
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.section-header .section-title {
    font-size: 3rem;
    font-weight: 800;
    color: #2b2b2b;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
    text-transform: uppercase;
}
.section-header .section-subtitle {
    font-size: 1.2rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
    font-style: italic;
} */
.founder-card {
    position: relative;
    text-align: center;
    padding: 30px;
    margin: 20px 0;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.founder-card:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}
.founder-image {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 25px;
    border: 4px solid #ad7831;
    transition: border-color 0.3s ease;
}
.founder-card:hover .founder-image {
    border-color: #d9a45a;
}
.founder-name {
    font-size: 1.8rem;
    font-weight: 900;
    color: #ad7831 !important;
    margin-bottom: 15px;
    letter-spacing: -0.2px;

}
.founder-bio {
    font-size: 1.05rem !important;
    color: #4a4a4a !important;
    /* max-width: 400px; */
    margin: 0 auto;
    line-height: 1.6;
    text-align: justify;
    font-family: 'poly' !important;
}
@media (max-width: 768px) {
    .section-header .section-title {
        font-size: 2.2rem;
    }
    .founder-image {
        width: 140px;
        height: 140px;
    }
    .founder-card {
        padding: 20px;
    }
}


.fab-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
  }

  .fab-button {
    background-color: #AD7831;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: transform 0.3s ease;
  }

  .social-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    transition: all 0.3s ease-in-out;
  }

  .social-buttons.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .fab {
    width: 45px;
    height: 45px;
    background-color: #AD7831;
    color: white;
    border-radius: 50%;
    padding: 20px;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    transition: background-color 0.2s ease;
  }

  .fab:hover {
    background-color: #8f6129;
    color: #fff !important;
  }

  .whatsapp-cta {
    background: linear-gradient(135deg, #ad7831, #d8a94d);
    font-family: 'Montserrat', sans-serif;
    border-radius: 20px;
    margin: 3rem auto;
    max-width: 900px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  }

  .cta-heading {
    font-family: 'Fraunces', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff !important;
  }

  .cta-subheading {
    font-size: 1.2rem;
    font-family: 'Poppins', sans-serif;
    color: #fff !important;
  }

  .btn-whatsapp {
    background-color: #fff;
    color: #ad7831;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    border-radius: 50px;
    transition: background 0.3s ease, transform 0.2s ease;
  }

  .btn-whatsapp:hover {
    background-color: #5f421c;
    color: #fff !important;
    transform: scale(1.05);
  }

  .btn-whatsapp:focus, .btn-whatsapp:active {
    box-shadow: none;
  }

  .fab.fa-whatsapp.cta, .detailsbtnpadding .fab {
    color: #25D366;
    font-size: 1.1rem;
    transition: transform 0.3s ease, color 0.3s ease;
    display: inline-block;
    background-color: transparent;
    width: auto;
    height: auto;
    padding: 0px;
    border-radius: 0px;
    box-shadow: none;
    margin-right: 5px;
    margin-top: 5px;
  }

  .fab.footer {
    background-color: transparent;
    width: auto;
    height: auto;
    padding: 0px;
    border-radius: 0px;
    box-shadow: none;
    /* margin-right: 5px;
    margin-top: 5px; */
  }



  .hero-section {
    background: linear-gradient(to right, rgb(0 0 0 / 75%), rgba(0, 0, 0, 0.4)), url(../img/jewelry-hero.jpg) right center / cover no-repeat;
    min-height: 60vh;
    display: flex;
    align-items: center;
    position: relative;
    background-position: right;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-family: 'Lora', serif;
    font-size: 1.3rem;
    color: #f1f1f1 !important;
    font-weight: 400;
    line-height: 1.6;
    max-width: 500px;
}

.story-section {
    padding: 80px 0;
    background: #ffffff;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-color);
}

.story-content {
    font-family: 'Lora', serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 2rem;
    text-align: justify;
}

.highlight-text {
    color: var(--primary-color);
    font-weight: 600;
}

.values-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.value-card {
    background: white;
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    border: 1px solid rgba(173, 120, 49, 0.1);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(173, 120, 49, 0.15);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 5px 15px rgba(173, 120, 49, 0.3);
}

.value-icon i {
    font-size: 1.8rem;
    color: white;
}

.value-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 1rem;
    text-align: center;
}

.value-description {
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #6c757d;
    text-align: center;
}

.stats-section {
    background: var(--primary-color);
    color: white;
    padding: 60px 0;
}

.stat-item {
    text-align: center;
    padding: 1rem;
}

.stat-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-family: 'Lato', sans-serif;
    font-size: 1.1rem;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .hero-section {
        min-height: 50vh;
        text-align: center;
    }

    .value-card {
        margin-bottom: 2rem;
    }
}

.form-img-bg {
    background: radial-gradient(#ad7831, #dbb179, transparent) !important;
}

.custom-msg-container {
    display: block;
    text-decoration: underline;
    padding-bottom: 10px;
    color: #666;
    font-family: 'Poly';
}
