/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #A81D61;
    --secondary-color: #e91e63;
    --accent-color: #ff8fab;
    --magenta: #A81D61;
    --magenta-dark: #8a174f;
    --magenta-light: #c22473;
    --dark-color: #1a1a1a;
    --light-color: #f8f8f8;
    --text-color: #333;
    --white: #ffffff;
    --red: #A81D61;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Promotional Top Bar */
.promo-bar {
    background: #bb9f06;
    color: var(--white);
    padding: 8px 0;
    font-size: 13px;
    text-align: center;
}

.promo-content p {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    flex-wrap: wrap;
}

.promo-link {
    color: var(--white);
    text-decoration: underline;
    font-weight: 600;
    cursor: pointer;
}

.promo-link:hover {
    text-decoration: none;
}

/* Top Bar */
.top-bar {
    background: var(--white);
    color: #333;
    padding: 0;
    font-size: 14px; 
}

.top-bar-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.top-bar-logo {
    flex-shrink: 0;
}

.top-bar-logo a {
    display: block;
    text-decoration: none;
}

.top-bar-logo img {
    height: 70px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    display: block;
}

.top-bar-utilities {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
    flex: 1;
    justify-content: flex-end;
}

.utility-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #333;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
}

.utility-item:hover {
    color: var(--magenta);
}

.utility-item i {
    font-size: 18px;
}

.utility-item a {
    color: #333;
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.utility-item a:hover {
    color: var(--magenta);
}

.search-box {
    position: relative;
    min-width: 250px;
}

.search-box input {
    padding: 8px 35px 8px 15px;
    border: 1px solid #ddd;
    border-radius: 20px;
    font-size: 13px;
    width: 100%;
    outline: none;
    transition: var(--transition);
}

.search-box input:focus {
    border-color: var(--magenta);
    box-shadow: 0 0 0 2px rgba(168, 29, 97, 0.1);
}

.search-box i {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    pointer-events: none;
}

/* Navigation */
.main-nav {
    background: #A81D61;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    position: relative;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: var(--white);
}

.logo img {
    height: 60px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
    display: block;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-size: 30px;
    font-weight: bold;
    color: var(--white);
    letter-spacing: 0.5px;
    line-height: 1.2;
    text-transform: uppercase;
}

.logo-tagline {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    letter-spacing: 0.3px;
    text-align: right;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding: 5px 0;
    text-transform: uppercase;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #ffff04;
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px 2px 0 0;
}

.nav-icons {
    display: flex;
    gap: 20px;
    align-items: center;
}

.nav-icon {
    color: var(--white);
    font-size: 20px;
    transition: var(--transition);
}

.nav-icon:hover {
    color: var(--primary-color);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--white);
    padding: 8px;
    transition: var(--transition);
    z-index: 10001;
}

.mobile-menu-toggle:hover {
    color: #ffff04;
    transform: scale(1.1);
}

/* Hero Banner Slider */
.hero-slider {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.slide-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Slider Navigation Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    color: var(--white);
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 10;
    backdrop-filter: blur(5px);
}

.slider-arrow:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.slider-arrow.prev {
    left: 30px;
}

.slider-arrow.next {
    right: 30px;
}

/* Slider Dots */
.slider-dots-container {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.slider-dots-container .slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.slider-dots-container .slider-dot.active {
    background: var(--white);
    width: 30px;
    border-radius: 6px;
    border-color: var(--white);
}

.slider-dots-container .slider-dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn-primary {
    background: var(--magenta);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--magenta-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(168, 29, 97, 0.4);
}

.btn-secondary {
    background: var(--primary-color);
    color: var(--white);
}

.btn-secondary:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* Welcome Section */
.welcome-section {
    padding: 80px 0;
    background: var(--light-color);
}

.welcome-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.welcome-text h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.welcome-text p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.8;
}

.welcome-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.welcome-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* Collections Preview */
.collections-preview {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 36px;
    color: var(--magenta);
    margin-bottom: 15px;
    font-weight: 700;
}

.section-header-center {
    text-align: center;
    margin-bottom: 50px;
}

.section-subtitle {
    font-size: 18px;
    color: #666;
    margin-top: 10px;
}

.collections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.collection-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: var(--transition);
    position: relative;
}

.collection-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(168, 29, 97, 0.2);
}

.collection-image {
    height: 300px;
    overflow: hidden;
    position: relative;
}

.collection-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.collection-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(168, 29, 97, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.collection-card:hover .collection-overlay {
    opacity: 1;
}

.collection-link {
    color: var(--white);
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    padding: 12px 30px;
    background: var(--white);
    color: var(--magenta);
    border-radius: 25px;
    transition: var(--transition);
}

.collection-link:hover {
    transform: scale(1.05);
}

.collection-card:hover .collection-image img {
    transform: scale(1.15);
}

.collection-content {
    padding: 25px;
    text-align: center;
}

.collection-content h3 {
    font-size: 24px;
    color: var(--magenta);
    margin-bottom: 10px;
    font-weight: 600;
}

.collection-content p {
    margin-bottom: 20px;
    color: #666;
}

/* Special Offers Section */
.offers-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
}

.offers-banner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    background: linear-gradient(135deg, var(--magenta), var(--magenta-light));
    border-radius: 20px;
    padding: 50px;
    color: var(--white);
    box-shadow: 0 10px 40px rgba(168, 29, 97, 0.3);
}

.offer-content {
    position: relative;
}

.offer-badge {
    display: inline-block;
    background: #ffff04;
    color: var(--magenta);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.offer-content h2 {
    font-size: 32px;
    margin-bottom: 10px;
    color: var(--white);
}

.offer-content h3 {
    font-size: 48px;
    font-weight: 900;
    margin: 15px 0;
    color: #ffff04;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.offer-content > p {
    font-size: 20px;
    margin-bottom: 25px;
    opacity: 0.95;
}

.offer-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 25px 0;
}

.offer-features span {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
}

.offer-features i {
    color: #ffff04;
}

.offer-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.offer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 400px;
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background: var(--light-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-item {
    text-align: center;
    padding: 30px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 32px;
}

.feature-item h3 {
    font-size: 20px;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.feature-item p {
    color: #666;
    font-size: 14px;
}

/* Shop by Category Section */
.category-section {
    padding: 80px 0;
    background: var(--white);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.category-item {
    text-align: center;
    padding: 30px 20px;
    background: var(--light-color);
    border-radius: 15px;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
}

.category-item:hover {
    transform: translateY(-5px);
    background: var(--white);
    border-color: var(--magenta);
    box-shadow: 0 10px 30px rgba(168, 29, 97, 0.15);
}

.category-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--magenta), var(--magenta-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 32px;
    transition: var(--transition);
}

.category-item:hover .category-icon {
    transform: scale(1.1) rotate(5deg);
}

.category-item h4 {
    font-size: 18px;
    color: var(--dark-color);
    margin-bottom: 8px;
    font-weight: 600;
}

.category-item p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* Shop by Occasion Section */
.occasion-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
}

.occasion-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.occasion-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: var(--transition);
    cursor: pointer;
    height: 350px;
}

.occasion-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(168, 29, 97, 0.3);
}

.occasion-image {
    width: 100%;
    height: 100%;
    position: relative;
}

.occasion-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.occasion-card:hover .occasion-image img {
    transform: scale(1.1);
}

.occasion-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 30px 25px 25px;
    color: var(--white);
    transform: translateY(0);
    transition: var(--transition);
}

.occasion-card:hover .occasion-content {
    background: linear-gradient(to top, rgba(168, 29, 97, 0.95), transparent);
}

.occasion-content h3 {
    font-size: 24px;
    margin-bottom: 8px;
    font-weight: 700;
}

.occasion-content p {
    font-size: 16px;
    margin: 0;
    opacity: 0.9;
}

/* Trust Badges Section */
.trust-section {
    padding: 60px 0;
    background: var(--white);
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.trust-badges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.trust-badge-item {
    text-align: center;
    padding: 25px;
    transition: var(--transition);
}

.trust-badge-item:hover {
    transform: translateY(-5px);
}

.trust-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;
    background: linear-gradient(135deg, var(--magenta), var(--magenta-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 28px;
    box-shadow: 0 5px 15px rgba(168, 29, 97, 0.3);
}

.trust-badge-item h4 {
    font-size: 18px;
    color: var(--dark-color);
    margin-bottom: 5px;
    font-weight: 600;
}

.trust-badge-item p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* New Arrivals Section */
.new-arrivals-section {
    padding: 80px 0;
    background: var(--light-color);
}

.new-arrivals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
}

.new-arrival-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: var(--transition);
    height: 300px;
}

.new-arrival-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(168, 29, 97, 0.25);
}

.arrival-image {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.arrival-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.new-arrival-item:hover .arrival-image img {
    transform: scale(1.15);
}

.arrival-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(168, 29, 97, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.new-arrival-item:hover .arrival-overlay {
    opacity: 1;
}

.arrival-link {
    color: var(--white);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    padding: 12px 25px;
    background: var(--white);
    color: var(--magenta);
    border-radius: 25px;
    transition: var(--transition);
}

.arrival-link:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(255,255,255,0.3);
}

.text-center {
    text-align: center;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--light-color);
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: var(--transition);
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(168, 29, 97, 0.15);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 25px;
    font-size: 80px;
    color: var(--magenta);
    opacity: 0.1;
    font-family: serif;
    line-height: 1;
}

.testimonial-rating {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
}

.testimonial-rating i {
    color: #ffc107;
    font-size: 16px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--magenta), var(--magenta-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
    flex-shrink: 0;
}

.author-info h4 {
    font-size: 18px;
    color: var(--dark-color);
    margin: 0 0 3px 0;
    font-weight: 600;
}

.author-info p {
    font-size: 14px;
    color: #999;
    margin: 0;
}

/* Video Reviews Section */
.video-reviews-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.video-reviews-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23A81D61" opacity="0.05"/><circle cx="75" cy="75" r="1" fill="%23A81D61" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.section-subtitle {
    font-size: 18px;
    color: #666;
    margin-top: 10px;
}

.video-reviews-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}

.video-reviews-slider {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 20px 0;
}

.video-reviews-slider::-webkit-scrollbar {
    display: none;
}

.video-review-item {
    flex: 0 0 calc(33.333% - 20px);
    min-width: 350px;
    scroll-snap-align: start;
}

.video-review-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: var(--transition);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.video-review-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(168, 29, 97, 0.3);
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    background: #000;
    overflow: hidden;
}

.review-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: none;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: var(--transition);
    z-index: 2;
    pointer-events: auto;
}

.video-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.play-btn {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 28px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(240, 98, 146, 0.5);
}

.play-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(240, 98, 146, 0.7);
}

.play-btn i {
    margin-left: 5px;
}

.review-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.review-header {
    margin-bottom: 15px;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
    flex-shrink: 0;
}

.reviewer-details h4 {
    font-size: 18px;
    color: var(--dark-color);
    margin-bottom: 5px;
    font-weight: 600;
}

.review-rating {
    display: flex;
    gap: 3px;
}

.review-rating i {
    color: var(--primary-color);
    font-size: 14px;
}

.review-text {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    font-style: italic;
    margin: 0;
    flex-grow: 1;
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: var(--white);
    border: none;
    border-radius: 50%;
    color: var(--magenta);
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    transition: var(--transition);
    z-index: 10;
}

.slider-nav:hover {
    background: var(--magenta);
    color: var(--white);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 30px rgba(168, 29, 97, 0.4);
}

.slider-nav.prev {
    left: 0;
}

.slider-nav.next {
    right: 0;
}

.slider-nav:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.slider-nav:disabled:hover {
    transform: translateY(-50%);
    background: var(--white);
    color: var(--magenta);
}

/* Slider Dots */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.slider-dot.active {
    background: var(--magenta);
    width: 30px;
    border-radius: 6px;
}

.slider-dot:hover {
    background: var(--magenta-light);
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #D3B618, var(--magenta-light));
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 10px;
}

.page-header p {
    font-size: 20px;
    opacity: 0.9;
}

/* About Section */
.about-section {
    padding: 80px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: start;
}

.about-text h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.about-text .lead {
    font-size: 20px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 25px;
}

.about-text p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-image {
    position: sticky;
    top: 100px;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Values Section */
.values-section {
    padding: 80px 0;
    background: var(--light-color);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 32px;
}

.value-card h3 {
    font-size: 22px;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.value-card p {
    color: #666;
    line-height: 1.6;
}

/* Showroom Section */
.showroom-section {
    padding: 80px 0;
}

.showroom-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.showroom-text h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.showroom-features {
    list-style: none;
    margin: 30px 0;
}

.showroom-features li {
    padding: 15px 0;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 16px;
}

.showroom-features i {
    color: var(--primary-color);
    font-size: 20px;
}

.showroom-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Collections Section */
.collections-section {
    padding: 80px 0;
}

.collections-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.tab-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px 40px;
    background: var(--white);
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition);
    min-width: 150px;
}

.tab-btn:hover {
    border-color: var(--primary-color);
    background: var(--light-color);
}

.tab-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

.tab-icon {
    font-size: 32px;
}

.tab-label {
    font-size: 18px;
    font-weight: 600;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.collection-header {
    text-align: center;
    margin-bottom: 40px;
}

.collection-header h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.collection-header p {
    font-size: 18px;
    color: #666;
}

.collection-notice {
    background: #fff3cd;
    border: 1px solid var(--primary-color);
    border-radius: 5px;
    padding: 20px;
    text-align: center;
    margin-bottom: 40px;
}

.collection-notice p {
    color: #856404;
    font-size: 16px;
    margin: 0;
}

.collection-notice i {
    margin-right: 10px;
    font-size: 20px;
}

.collection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.collection-item {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: var(--transition);
}

.collection-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.collection-item-image {
    height: 300px;
    overflow: hidden;
}

.collection-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.collection-item:hover .collection-item-image img {
    transform: scale(1.1);
}

/* Gallery Section */
.gallery-section {
    padding: 80px 0;
}

.gallery-notice {
    background: #fff3cd;
    border: 1px solid var(--primary-color);
    border-radius: 5px;
    padding: 20px;
    text-align: center;
    margin-bottom: 40px;
}

.gallery-notice p {
    color: #856404;
    font-size: 16px;
    margin: 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: var(--transition);
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.gallery-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-image img {
    transform: scale(1.1);
}

.gallery-lightbox {
    color: var(--white);
    font-size: 32px;
    text-decoration: none;
}

/* Video Gallery */
.video-gallery {
    margin-top: 60px;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.video-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.video-item video {
    width: 100%;
    height: auto;
    display: block;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.contact-info p {
    margin-bottom: 30px;
    line-height: 1.8;
}

.contact-details {
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
    flex-shrink: 0;
}

.contact-text h3 {
    font-size: 20px;
    color: var(--dark-color);
    margin-bottom: 5px;
}

.contact-text p {
    color: #666;
    margin: 0;
}

.contact-text a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-text a:hover {
    text-decoration: underline;
}

.social-section {
    margin-top: 40px;
}

.social-section h3 {
    font-size: 24px;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

.justdial-section {
    margin-top: 30px;
}

.justdial-section .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* Contact Form */
.contact-form-wrapper h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.contact-form {
    background: var(--light-color);
    padding: 40px;
    border-radius: 10px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-size: 16px;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
}

/* Map Section */
.map-section {
    padding: 80px 0;
    background: var(--light-color);
}

.map-wrapper {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.map-wrapper iframe {
    display: block;
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.footer-section p {
    line-height: 1.8;
    color: #ccc;
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--magenta-light);
}

.contact-info ul {
    list-style: none;
}

.contact-info ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: #ccc;
}

.contact-info ul li i {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    color: #999;
}

.footer-bottom p {
    margin: 5px 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .offers-banner {
        grid-template-columns: 1fr;
        padding: 30px;
        gap: 30px;
    }

    .offer-content h2 {
        font-size: 24px;
    }

    .offer-content h3 {
        font-size: 36px;
    }

    .offer-image img {
        min-height: 300px;
    }

    .category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .occasion-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .occasion-card {
        height: 300px;
    }

    .trust-badges {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
    }

    .new-arrivals-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 20px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 28px;
    }

    .section-subtitle {
        font-size: 16px;
    }

    .promo-bar {
        font-size: 11px;
        padding: 6px 0;
    }

    .top-bar-wrapper {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .top-bar-logo img {
        height: 50px;
    }

    .top-bar-utilities {
        justify-content: center;
        gap: 15px;
        font-size: 12px;
    }

    .search-box {
        min-width: 200px;
        order: -1;
        width: 100%;
    }

    .utility-item span {
        display: none;
    }

    .logo img {
        height: 45px;
    }

    .logo-name {
        font-size: 18px;
    }

    .logo-tagline {
        font-size: 10px;
    }

    .mobile-menu-toggle {
        display: flex !important;
        align-items: center;
        justify-content: center;
        position: relative;
        z-index: 10001;
        min-width: 40px;
        min-height: 40px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 5px;
        padding: 8px;
    }

    .mobile-menu-toggle:hover {
        background: rgba(255, 255, 255, 0.2);
    }

    .nav-menu {
        display: none;
        position: fixed;
        top: 160px;
        left: 0;
        width: 100%;
        height: calc(100vh - 160px);
        background: var(--white);
        flex-direction: column;
        padding: 30px 20px;
        transition: var(--transition);
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        z-index: 9999;
        overflow-y: auto;
        gap: 0;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        width: 100%;
        margin-bottom: 0;
        list-style: none;
    }

    .nav-menu a {
        display: block;
        padding: 15px 20px;
        color: #333 !important;
        font-size: 18px;
        border-bottom: 1px solid #f0f0f0;
        text-align: left;
        width: 100%;
        text-transform: uppercase;
    }

    .nav-menu a:hover,
    .nav-menu a.active {
        color: var(--magenta) !important;
        background: #f8f8f8;
        border-left: 4px solid var(--magenta);
    }

    .nav-menu a.active::after {
        display: none;
    }

    .hero-slider {
        height: 500px;
    }

    .hero-title {
        font-size: 32px;
    }

    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .slider-arrow.prev {
        left: 15px;
    }

    .slider-arrow.next {
        right: 15px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .welcome-content,
    .about-content,
    .showroom-content,
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .welcome-images {
        grid-template-columns: 1fr;
    }

    .collections-tabs {
        flex-direction: column;
        align-items: stretch;
    }

    .tab-btn {
        width: 100%;
    }

    .gallery-grid,
    .video-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 28px;
    }

    .page-header h1 {
        font-size: 32px;
    }

    .video-reviews-container {
        padding: 0 50px;
    }

    .video-review-item {
        flex: 0 0 calc(50% - 15px);
        min-width: 300px;
    }

    .slider-nav {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .promo-bar {
        font-size: 10px;
        padding: 5px 0;
    }

    .promo-content p {
        flex-direction: column;
        gap: 3px;
    }

    .top-bar-logo img {
        height: 40px;
    }

    .top-bar-utilities {
        gap: 10px;
        font-size: 11px;
    }

    .search-box {
        min-width: 100%;
    }

    .logo img {
        height: 35px;
    }

    .logo-name {
        font-size: 16px;
    }

    .logo-tagline {
        font-size: 9px;
    }

    .hero {
        height: 400px;
    }
}

/* Welcome Popup */
.welcome-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.welcome-popup.show {
    display: flex;
}

.popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.popup-content {
    position: relative;
    background: var(--white);
    border-radius: 20px;
    max-width: 500px;
    width: 100%;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    z-index: 1;
    animation: popupSlideIn 0.5s ease-out;
}

@keyframes popupSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    border: none;
    background: #f0f0f0;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    font-size: 18px;
    transition: var(--transition);
}

.popup-close:hover {
    background: var(--magenta);
    color: var(--white);
    transform: rotate(90deg);
}

.popup-body {
    text-align: center;
}

.popup-body h2 {
    font-size: 32px;
    color: var(--magenta);
    margin-bottom: 15px;
}

.popup-body > p {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.popup-features {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.popup-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    flex: 1;
    min-width: 100px;
}

.popup-feature i {
    font-size: 32px;
    color: var(--magenta);
}

.popup-feature span {
    font-size: 14px;
    color: #333;
    font-weight: 500;
}

/* Rate Panel (Left Side) */
.rate-panel {
    position: fixed;
    left: -300px;
    top: 50%;
    transform: translateY(-50%);
    width: 300px;
    background: var(--white);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.2);
    border-radius: 0 15px 15px 0;
    z-index: 9999;
    transition: left 0.4s ease;
}

.rate-panel.open {
    left: 0;
}

.rate-toggle {
    position: absolute;
    right: -60px;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 120px;
    background: linear-gradient(135deg, #D3B618, var(--magenta));
    border-radius: 0 15px 15px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--white);
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.rate-toggle:hover {
    right: -65px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.rate-toggle i {
    font-size: 24px;
}

.rate-toggle span {
    font-size: 12px;
    font-weight: 600;
    writing-mode: vertical-rl;
    text-orientation: mixed;
}

.rate-content {
    padding: 20px;
}

.rate-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.rate-header h3 {
    font-size: 20px;
    color: var(--magenta);
    margin: 0;
}

.rate-close {
    width: 30px;
    height: 30px;
    border: none;
    background: #f0f0f0;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    font-size: 14px;
    transition: var(--transition);
}

.rate-close:hover {
    background: var(--magenta);
    color: var(--white);
}

.rate-date {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    padding: 10px;
    background: #f8f8f8;
    border-radius: 8px;
    font-size: 14px;
    color: #666;
}

.rate-date i {
    color: var(--magenta);
}

.rate-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.rate-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #f8f8f8;
    border-radius: 10px;
    transition: var(--transition);
}

.rate-item:hover {
    background: #f0f0f0;
    transform: translateX(5px);
}

.rate-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--white);
}

.rate-icon.gold {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
}

.rate-icon.silver {
    background: linear-gradient(135deg, #c0c0c0, #e8e8e8);
    color: #333;
}

.rate-info {
    flex: 1;
}

.rate-info h4 {
    font-size: 14px;
    color: #666;
    margin: 0 0 5px 0;
    font-weight: 500;
}

.rate-value {
    font-size: 20px;
    font-weight: bold;
    color: var(--magenta);
    margin: 0;
}

.rate-change {
    font-size: 12px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 4px;
}

.rate-change.positive {
    background: #d4edda;
    color: #155724;
}

.rate-change.negative {
    background: #f8d7da;
    color: #721c24;
}

.rate-footer {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #e0e0e0;
    text-align: center;
}

.rate-footer p {
    margin: 0;
    color: #999;
    font-size: 12px;
}

/* Quick Options Panel (Right Side) */
.quick-options {
    position: fixed;
    right: -80px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9998;
    transition: right 0.4s ease;
}

.quick-options.open {
    right: 0;
}

.quick-options-toggle {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--magenta), var(--magenta-light));
    border-radius: 50% 0 0 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(168, 29, 97, 0.3);
    transition: var(--transition);
}

.quick-options-toggle:hover {
    right: -5px;
    box-shadow: 0 8px 30px rgba(168, 29, 97, 0.4);
}

.quick-options-menu {
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: var(--white);
    padding: 15px;
    border-radius: 15px 0 0 15px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.2);
    min-width: 180px;
}

.quick-option-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background: #f8f8f8;
    border-radius: 10px;
    text-decoration: none;
    color: #333;
    transition: var(--transition);
    font-weight: 500;
}

.quick-option-item:hover {
    background: var(--magenta);
    color: var(--white);
    transform: translateX(-5px);
}

.quick-option-item i {
    font-size: 20px;
    width: 24px;
    text-align: center;
}

.quick-option-item.call {
    border-left: 4px solid #28a745;
}

.quick-option-item.whatsapp {
    border-left: 4px solid #25d366;
}

.quick-option-item.contact {
    border-left: 4px solid var(--magenta);
}

.quick-option-item.collections {
    border-left: 4px solid #D3B618;
}

.quick-option-item.gallery {
    border-left: 4px solid #17a2b8;
}

/* WhatsApp Chat Button */
.whatsapp-chat {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 9997;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #25d366;
    color: var(--white);
    padding: 15px 20px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    font-weight: 600;
    font-size: 16px;
}

.whatsapp-btn:hover {
    background: #20ba5a;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-btn i {
    font-size: 24px;
}

/* Responsive Styles for New Features */
@media (max-width: 768px) {
    .popup-content {
        padding: 30px 20px;
        max-width: 90%;
    }

    .popup-body h2 {
        font-size: 24px;
    }

    .rate-panel {
        width: 280px;
        left: -280px;
    }

    .rate-toggle {
        right: -50px;
        width: 50px;
        height: 100px;
    }

    .quick-options-menu {
        min-width: 160px;
        padding: 12px;
    }

    .quick-option-item {
        padding: 10px 12px;
        font-size: 14px;
    }

    .whatsapp-btn {
        padding: 12px 16px;
        font-size: 14px;
    }

    .whatsapp-btn span {
        display: none;
    }
}

@media (max-width: 480px) {
    .rate-panel {
        width: 250px;
        left: -250px;
    }

    .rate-toggle {
        right: -45px;
        width: 45px;
        height: 90px;
    }

    .rate-toggle span {
        font-size: 10px;
    }

    .quick-options-menu {
        min-width: 140px;
    }

    .whatsapp-chat {
        bottom: 20px;
        left: 20px;
    }

    .hero-slider {
        height: 400px;
    }

    .hero-title {
        font-size: 24px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .slider-arrow {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }

    .slider-arrow.prev {
        left: 10px;
    }

    .slider-arrow.next {
        right: 10px;
    }

    .slider-dots-container {
        bottom: 20px;
    }

    /* .logo span {
        font-size: 18px;
    } */
    .logo-tagline {
        font-size: 10px;
    }

    .contact-form {
        padding: 20px;
    }

    .video-reviews-container {
        padding: 0 20px;
    }

    .video-review-item {
        flex: 0 0 100%;
        min-width: 100%;
    }

    .slider-nav {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }

    .play-btn {
        width: 60px;
        height: 60px;
        font-size: 22px;
    }

    .review-content {
        padding: 20px;
    }
}
/* 

.scheme-section {
  padding: 70px 15px;
  background: #faf7f8;
}


.scheme-title {
  text-align: center;
  font-size: 36px;
  font-weight: 800;
  color: #8b003a; 
  margin-bottom: 10px;
}


.scheme-subtitle {
  text-align: center;
  font-size: 16px;
  color: #666;
  margin-bottom: 30px;
}

.scheme-container {
  max-width: 1200px;
  margin: 40px auto 0;
  display: flex;
  gap: 30px;
}

.scheme-col {
  width: 50%;
  background: #ffffff;
  padding: 18px;
  border-radius: 18px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.scheme-col img {
  width: 100%;
  height: auto;
  border-radius: 14px;
  display: block;
}


.scheme-col:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .scheme-container {
    flex-direction: column;
  }

  .scheme-col {
    width: 100%;
  }

  .scheme-title {
    font-size: 28px;
  }

  .scheme-subtitle {
    font-size: 15px;
  }
}
.scheme-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.scheme-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

.scheme-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #a61d5d; 
  font-weight: bold;
}
.scheme-col h3 {
  font-size: 22px;
  font-weight: 700;
  color: #a61d5d;
  margin-bottom: 10px;
} */
/* Section */
.scheme-section {
  background: #faf7f8;
  padding: 70px 0;
}

/* Title */
.scheme-title {
  text-align: center;
  font-size: 36px;
  font-weight: 800;
  color: #8b003a; /* jewellery magenta */
  margin-bottom: 10px;
}

/* Subtitle */
.scheme-subtitle {
  text-align: center;
  font-size: 16px;
  color: #666;
  margin-bottom: 40px;
}

/* Side-by-side layout */
.scheme-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

/* Image */
.scheme-image {
  width: 50%;
}

.scheme-image img {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* Right column */
.scheme-col {
  width: 50%;
  display: flex;
  justify-content: center;
}

/* Banner */
.scheme-banner {
  background: linear-gradient(90deg, #a61d5d, #c0266b);
  color: #ffff04;
  text-align: center;
  font-size: 20px;
  font-weight: 800;
  padding: 14px 20px;
  letter-spacing: 1.5px;
  border-radius: 30px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  max-width: 700px;
  width: 100%;
  text-transform: uppercase;
}

/* Responsive */
@media (max-width: 768px) {
  .scheme-wrapper {
    flex-direction: column;
  }

  .scheme-image,
  .scheme-col {
    width: 100%;
  }

  .scheme-title {
    font-size: 28px;
  }

  .scheme-banner {
    font-size: 18px;
  }
}

.scheme-note {
  margin-top: 12px;
  text-align: center;
  font-size: 14px;
  color: #fff; /* matches jewellery theme */
  font-weight: 600;
  letter-spacing: 0.3px;
}
