.elementor-473 .elementor-element.elementor-element-8ca730b{--display:flex;--gap:0px 0px;--row-gap:0px;--column-gap:0px;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-473 .elementor-element.elementor-element-fff9be9{--e-image-carousel-slides-to-show:1;}.elementor-473 .elementor-element.elementor-element-358824e{margin:0px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;padding:0px 0px 0px 0px;}.elementor-473 .elementor-element.elementor-element-aa53144{margin:0px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;padding:0px 0px 0px 0px;}.elementor-473 .elementor-element.elementor-element-652e14c{margin:0px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;padding:0px 0px 0px 0px;}.elementor-473 .elementor-element.elementor-element-5efeac3{--display:flex;}/* Start custom CSS for html, class: .elementor-element-66d4d80 */.top-bar {
            background: linear-gradient(90deg, var(--dark-red) 0%, var(--primary-red) 100%);
            color: #fff;
            text-align: center;
            padding: 12px 20px;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 0.5px;
            position: relative;
            overflow: hidden;
        }
        
        .top-bar::before {
            content: '🌶️';
            position: absolute;
            left: 20px;
            font-size: 20px;
            animation: bounce 2s infinite;
        }
        
        .top-bar::after {
            content: '🥭';
            position: absolute;
            right: 20px;
            font-size: 20px;
            animation: bounce 2s infinite 0.5s;
        }
        
        @keyframes bounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-5px); }
        }
        
        .top-bar strong {
            color: var(--accent-gold);
            text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
        }/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-358824e *//* ============================================
   SHANE RAJASTHAN - COMBINED CSS
   For use in Elementor HTML Widget
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-red: #C41E3A;
    --dark-red: #8B0000;
    --accent-gold: #D4AF37;
    --warm-cream: #FFF8E7;
    --text-dark: #2C1810;
    --text-medium: #5C4033;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    background-color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Traditional Pattern Background */
.pattern-bg {
    position: relative;
}

.pattern-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(196, 30, 58, 0.02) 10px, rgba(196, 30, 58, 0.02) 20px),
        repeating-linear-gradient(-45deg, transparent, transparent 10px, rgba(212, 175, 55, 0.02) 10px, rgba(212, 175, 55, 0.02) 20px);
    pointer-events: none;
}

/* Hero Image */
.hero-image {
    position: relative;
    background: var(--warm-cream);
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Common Styles */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.eyebrow {
    font-family: 'Bebas Neue', sans-serif;
    color: var(--accent-gold);
    font-size: 18px;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.2;
}

.section-description {
    font-size: 15px;
    color: var(--text-medium);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Best Sellers Section */
.best-sellers-section {
    padding: 80px 0;
    background: #fff;
    position: relative;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.product-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    border: 2px solid transparent;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(196, 30, 58, 0.2);
    border-color: var(--primary-red);
}

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--primary-red);
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    z-index: 10;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 3px 10px rgba(196, 30, 58, 0.4);
}

.product-image-wrapper {
    position: relative;
    overflow: hidden;
    background: var(--warm-cream);
    aspect-ratio: 1;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-card:hover .product-image {
    transform: scale(1.15);
}

.product-info {
    padding: 18px;
}

.product-title {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
    line-height: 1.3;
}

.product-rating {
    color: var(--accent-gold);
    font-size: 13px;
    margin-bottom: 10px;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.price-current {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: var(--primary-red);
}

.price-old {
    font-size: 16px;
    color: #999;
    text-decoration: line-through;
}

.add-to-cart-btn {
    width: 100%;
    background: var(--primary-red);
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.add-to-cart-btn:hover {
    background: var(--dark-red);
}

/* Category Section */
.category-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #FFF8E7 0%, #FFE5CC 100%);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.category-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
    text-decoration: none;
    color: inherit;
    border: 2px solid transparent;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(196, 30, 58, 0.15);
    border-color: var(--accent-gold);
}

.category-image {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

.category-info {
    padding: 18px;
    text-align: center;
}

.category-info h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.category-info p {
    color: var(--text-medium);
    font-size: 13px;
}

/* Products By Category */
.products-by-category {
    padding: 80px 0;
    background: #fff;
}

.category-products {
    margin-bottom: 70px;
}

.category-products:last-child {
    margin-bottom: 0;
}

.category-products h3 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 900;
    color: var(--primary-red);
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--primary-red);
    display: inline-block;
    text-transform: uppercase;
}

/* Our Story Section */
.our-story-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.05) 0%, rgba(212, 175, 55, 0.05) 100%);
    text-align: center;
}

.story-preview {
    max-width: 900px;
    margin: 0 auto;
}

.story-preview h2 {
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    font-weight: 900;
    color: var(--primary-red);
    margin-bottom: 25px;
    line-height: 1.2;
}

.story-preview p {
    font-size: 18px;
    color: var(--text-medium);
    margin-bottom: 35px;
    line-height: 1.8;
}

.btn-secondary {
    background: transparent;
    color: var(--primary-red);
    padding: 16px 40px;
    border: 2px solid var(--primary-red);
    border-radius: 30px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-secondary:hover {
    background: var(--primary-red);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(196, 30, 58, 0.3);
}

/* Banner Section */
.banner-section {
    padding: 120px 0;
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.95), rgba(196, 30, 58, 0.95)),
                url('https://images.unsplash.com/photo-1601493700631-2b16ec4b4716?w=1600') center/cover;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.banner-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 40px, rgba(255, 255, 255, 0.03) 40px, rgba(255, 255, 255, 0.03) 80px);
}

.banner-content {
    position: relative;
    z-index: 2;
}

.banner-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    font-weight: 900;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.banner-content p {
    font-size: 20px;
    margin-bottom: 35px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.btn-white {
    background: #fff;
    color: var(--primary-red);
    padding: 16px 40px;
    border: none;
    border-radius: 30px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-white:hover {
    background: var(--accent-gold);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

/* Authenticity Section */
.authenticity-section {
    padding: 80px 0;
    background: #fff;
}

.authenticity-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.authenticity-card {
    text-align: center;
    padding: 35px 25px;
    background: linear-gradient(135deg, #FFF8E7 0%, #fff 100%);
    border-radius: 15px;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.authenticity-card:hover {
    background: #fff;
    box-shadow: 0 10px 35px rgba(196, 30, 58, 0.12);
    transform: translateY(-5px);
    border-color: var(--accent-gold);
}

.authenticity-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--accent-gold);
}

.authenticity-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.authenticity-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 19px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.authenticity-card p {
    color: var(--text-medium);
    font-size: 14px;
    line-height: 1.7;
}

/* Pre-Footer Banner */
.pre-footer-banner {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--dark-red) 0%, var(--primary-red) 100%);
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.pre-footer-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1609920658906-8223bd289001?w=1600') center/cover;
    opacity: 0.08;
}

.pre-footer-content {
    position: relative;
    z-index: 2;
}

.pre-footer-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    font-weight: 900;
    margin-bottom: 20px;
}

.pre-footer-content p {
    font-size: 18px;
    margin-bottom: 35px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Customer Reviews */
.reviews-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #FFF8E7 0%, #FFE5CC 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.testimonial-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    border-left: 4px solid var(--accent-gold);
}

.testimonial-rating {
    color: var(--accent-gold);
    font-size: 20px;
    margin-bottom: 15px;
}

.testimonial-text {
    color: var(--text-medium);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent-gold);
}

.author-name {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 15px;
}

.author-location {
    color: var(--text-medium);
    font-size: 13px;
}

/* Contact Section */
.question-section {
    padding: 80px 0;
    background: #fff;
}

.question-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.question-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.question-content p {
    font-size: 16px;
    color: var(--text-medium);
    margin-bottom: 40px;
}

.contact-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.contact-option {
    background: var(--warm-cream);
    padding: 25px 20px;
    border-radius: 12px;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.contact-option:hover {
    background: #fff;
    box-shadow: 0 10px 30px rgba(196, 30, 58, 0.1);
    transform: translateY(-5px);
    border-color: var(--accent-gold);
}

.contact-icon {
    font-size: 36px;
    margin-bottom: 12px;
}

.contact-option h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.contact-option p {
    font-size: 14px;
    color: var(--primary-red);
    font-weight: 600;
    margin: 0;
}

.question-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 18px;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    transition: all 0.3s;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary-red);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    width: 100%;
    background: var(--primary-red);
    color: #fff;
    padding: 16px 40px;
    border: none;
    border-radius: 30px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-btn:hover {
    background: var(--dark-red);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(196, 30, 58, 0.3);
}

/* RESPONSIVE STYLES */
@media (max-width: 1024px) {
    .product-grid,
    .category-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .authenticity-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    /* Product grids - 2 columns on mobile */
    .product-grid,
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .product-card {
        border-radius: 10px;
    }
    
    .product-info {
        padding: 14px;
    }
    
    .product-title {
        font-size: 14px;
    }
    
    .product-rating {
        font-size: 11px;
    }
    
    .price-current {
        font-size: 18px;
    }
    
    .price-old {
        font-size: 14px;
    }
    
    .add-to-cart-btn {
        padding: 10px;
        font-size: 11px;
    }
    
    .product-badge {
        top: 8px;
        left: 8px;
        padding: 4px 10px;
        font-size: 9px;
    }
    
    /* Section spacing */
    .best-sellers-section,
    .category-section,
    .products-by-category,
    .our-story-section,
    .authenticity-section,
    .reviews-section,
    .question-section {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .section-description {
        font-size: 14px;
    }
    
    .eyebrow {
        font-size: 14px;
        letter-spacing: 2px;
    }
    
    /* Category products */
    .category-products h3 {
        font-size: 26px;
        margin-bottom: 20px;
    }
    
    /* Story section */
    .story-preview h2 {
        font-size: 36px;
    }
    
    .story-preview p {
        font-size: 15px;
    }
    
    /* Banner */
    .banner-section {
        padding: 70px 0;
    }
    
    .banner-content h2 {
        font-size: 36px;
    }
    
    .banner-content p {
        font-size: 16px;
    }
    
    /* Authenticity grid */
    .authenticity-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .authenticity-card {
        padding: 25px 20px;
    }
    
    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Contact */
    .contact-options {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .question-content h2 {
        font-size: 32px;
    }
    
    /* Pre-footer */
    .pre-footer-banner {
        padding: 70px 0;
    }
    
    .pre-footer-content h2 {
        font-size: 36px;
    }
    
    .pre-footer-content p {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .category-products h3 {
        font-size: 22px;
    }
    
    .product-title {
        font-size: 13px;
    }
    
    .btn-secondary,
    .btn-white,
    .submit-btn {
        padding: 14px 30px;
        font-size: 13px;
    }
}/* End custom CSS */