/* CSS Variables */
:root {
    --primary-color: #C4121C;
    --secondary-color: #FFD200;
    --warm-ivory: #F9F5E9;
    --charcoal-black: #1A1A1A;
    --soft-sand: #E8DCC3;
    
    --heading-font: 'Playfair Display', serif;
    --body-font: 'Poppins', sans-serif;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    color: var(--charcoal-black);
    background-color: var(--warm-ivory);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    font-weight: 600;
    line-height: 1.2;
}

.section__title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--charcoal-black);
}

.section__subtitle {
    font-size: 1.2rem;
    text-align: center;
    color: #666;
    margin-bottom: 3rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-family: var(--body-font);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn--primary {
    background: var(--primary-color);
    color: white;
    box-shadow: var(--shadow);
}

.btn--primary:hover {
    background: #a00e16;
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.btn--secondary {
    background: var(--secondary-color);
    color: var(--charcoal-black);
    box-shadow: var(--shadow);
}

.btn--secondary:hover {
    background: #e6bd00;
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

/* Enhanced Premium Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(249, 245, 233, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(255, 210, 0, 0.1);
}

.header.scrolled {
    background: rgba(249, 245, 233, 0.98);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(255, 210, 0, 0.2);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    position: relative;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: var(--transition);
    text-decoration: none;
    color: inherit;
}

.nav__logo:hover {
    transform: scale(1.05);
}

.nav__logo:hover .logo__name {
    color: var(--primary-color);
}

.logo {
    height: 50px;
    width: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.logo__text {
    display: flex;
    flex-direction: column;
}

.logo__name {
    font-family: var(--heading-font);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.logo__tagline {
    font-size: 0.8rem;
    color: var(--secondary-color);
    font-weight: 500;
}

.nav__menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav__list {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav__link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--charcoal-black);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.nav__link:hover::before {
    left: 100%;
}

.nav__link:hover,
.nav__link.active {
    color: var(--primary-color);
    background: rgba(255, 210, 0, 0.1);
    transform: translateY(-2px);
}

.nav__icon {
    font-size: 1.1rem;
}

.nav__text {
    font-size: 0.95rem;
}

.nav__cta {
    margin-left: 1rem;
}

.btn--whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    padding: 0.7rem 1.5rem;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn--whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    background: linear-gradient(135deg, #128C7E, #25D366);
}

.whatsapp-icon {
    font-size: 1.1rem;
}

.nav__toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: var(--transition);
}

.nav__toggle:hover {
    background: rgba(255, 210, 0, 0.1);
}

.nav__toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 3px 0;
    transition: var(--transition);
    border-radius: 2px;
}

.nav__toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.nav__toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav__toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Simple Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero__bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('assets/Hero Section/set-spices-herbs-stone-table-indian-traditional-spices-top-view-free-copy-space.jpg') center/cover;
}

.hero__overlay-strong {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at center, 
            rgba(0, 0, 0, 0.4) 0%, 
            rgba(0, 0, 0, 0.8) 70%),
        linear-gradient(135deg, 
            rgba(196, 18, 28, 0.5) 0%, 
            rgba(26, 26, 26, 0.9) 100%);
    z-index: 1;
}

.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at center, 
            rgba(0, 0, 0, 0.3) 0%, 
            rgba(0, 0, 0, 0.7) 70%),
        linear-gradient(135deg, 
            rgba(196, 18, 28, 0.4) 0%, 
            rgba(26, 26, 26, 0.8) 100%);
    z-index: 1;
}

.hero__lighting {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 40%, 
                rgba(255, 210, 0, 0.1) 0%, 
                transparent 50%);
    z-index: 2;
}

/* Remove all particle animations */

.hero__content {
    text-align: center;
    color: white;
    z-index: 5;
    position: relative;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    padding: 3rem 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero__text-container {
    max-width: 800px;
    margin: 0 auto;
}

.hero__badge {
    display: inline-block;
    background: rgba(255, 210, 0, 0.9);
    color: var(--charcoal-black);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    margin-bottom: 1.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero__title {
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
    letter-spacing: 2px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero__subtitle {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.hero__description {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.6;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
    opacity: 0.95;
}

.hero__buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cinematic-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.btn--primary {
    background: linear-gradient(135deg, var(--primary-color), #8B0000);
    color: white;
    box-shadow: 0 6px 20px rgba(196, 18, 28, 0.4);
}

.btn--secondary {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.cinematic-btn:hover {
    transform: translateY(-2px);
}

.btn--primary:hover {
    box-shadow: 0 8px 25px rgba(196, 18, 28, 0.5);
}

.btn--secondary:hover {
    background: rgba(255, 255, 255, 0.25);
}

/* Scroll Indicator */
.hero__scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.scroll-mouse {
    width: 20px;
    height: 32px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 10px;
    position: relative;
}

.scroll-wheel {
    width: 2px;
    height: 6px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 1px;
    position: absolute;
    top: 4px;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-text {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Remove all animations */

/* Intro Visual Section */
.intro-visual {
    padding: 5rem 0;
    background: var(--warm-ivory);
}

.intro-visual__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.intro-visual__image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.content-block {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    position: relative;
}

.content-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--secondary-color);
    border-radius: 20px 0 0 20px;
}

.content-block h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.intro-visual__hero-image {
    margin-top: 2rem;
}

.intro-visual__hero-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.parallax-image {
    transition: transform 0.1s ease-out;
}

/* Story Section */
.story {
    padding: 5rem 0;
    background: var(--soft-sand);
}

.story__content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.decorative-divider {
    width: 100px;
    height: 3px;
    background: var(--secondary-color);
    margin: 2rem auto;
    position: relative;
}

.decorative-divider::before,
.decorative-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 10px;
    height: 10px;
    background: var(--primary-color);
    border-radius: 50%;
    transform: translateY(-50%);
}

.decorative-divider::before {
    left: -20px;
}

.decorative-divider::after {
    right: -20px;
}

.story__text {
    font-size: 1.5rem;
    font-style: italic;
    color: var(--charcoal-black);
    line-height: 1.8;
}

/* Quality Section */
.quality {
    padding: 5rem 0;
    background: var(--warm-ivory);
}

.quality__card {
    background: white;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
}

.quality__card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.quality__image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.quality__content {
    padding: 3rem;
}

.quality__content h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.quality__content p {
    font-size: 1.1rem;
    color: #666;
}

/* Simplified Sections - No Complex Animations */

/* Intro Visual Section - Simplified */
.intro-visual {
    padding: 5rem 0;
    background: var(--warm-ivory);
}

.intro-visual__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.intro-visual__image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.simple-image {
    /* Remove hover animation */
}

.content-block {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    position: relative;
}

.content-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--secondary-color);
    border-radius: 20px 0 0 20px;
}

.content-block h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.intro-visual__hero-image {
    margin-top: 2rem;
}

.intro-visual__hero-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

/* Story Section - Simplified */
.story {
    padding: 5rem 0;
    background: var(--soft-sand);
}

.story__content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.simple-divider {
    width: 100px;
    height: 3px;
    background: var(--secondary-color);
    margin: 2rem auto;
    border-radius: 2px;
}

.story__text {
    font-size: 1.5rem;
    font-style: italic;
    color: var(--charcoal-black);
    line-height: 1.8;
}

/* Quality Section - Simplified */
.quality {
    padding: 5rem 0;
    background: var(--warm-ivory);
}

.simple-card {
    background: white;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow);
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
}

.quality__image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.quality__content {
    padding: 3rem;
}

.quality__content h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.quality__content p {
    font-size: 1.1rem;
    color: #666;
}

/* Featured Products - Simplified */
.featured-products {
    padding: 5rem 0;
    background: var(--soft-sand);
}

.products__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.simple-product {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.product-card__image {
    height: 250px;
    overflow: hidden;
}

.product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-card__title {
    font-size: 1.5rem;
    margin: 1.5rem 1.5rem 1rem;
    color: var(--primary-color);
}

.product-card__description {
    padding: 0 1.5rem 1.5rem;
    color: #666;
}

/* Gallery Section - Simplified */
.gallery {
    padding: 5rem 0;
    background: var(--warm-ivory);
}

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 3rem;
}

.simple-gallery {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.simple-gallery img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

/* Social Media Highlight Section */
.social-highlight {
    padding: 5rem 0;
    background: var(--warm-ivory);
    position: relative;
}

.social-highlight__content {
    text-align: center;
}

.social-highlight__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.social-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.social-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    transition: var(--transition);
}

.instagram-card::before {
    background: linear-gradient(45deg, #E1306C, #F56040, #FCAF45);
}

.facebook-card::before {
    background: #1877F2;
}

.google-card::before {
    background: linear-gradient(45deg, #4285F4, #34A853, #FBBC05, #EA4335);
}



.social-card__header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.social-card .social-icon {
    font-size: 2rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: var(--soft-sand);
}

.social-info h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin: 0;
}

.social-info p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

.social-card__content {
    margin-bottom: 2rem;
}

.social-card__content p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.social-card__button {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    text-align: center;
    width: 100%;
}

.instagram-card .social-card__button {
    background: linear-gradient(45deg, #E1306C, #F56040);
    color: white;
}

.facebook-card .social-card__button {
    background: #1877F2;
    color: white;
}

.google-card .social-card__button {
    background: linear-gradient(45deg, #4285F4, #34A853);
    color: white;
}



/* Gallery Section */
.gallery {
    padding: 5rem 0;
    background: var(--warm-ivory);
}

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 3rem;
}

.gallery__item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.gallery__item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-hover);
}

.gallery__item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: var(--transition);
}

.gallery__item:hover img {
    transform: scale(1.1);
}

/* Professional Footer */
.footer {
    background: linear-gradient(135deg, var(--primary-color), #8B0000);
    color: white;
    position: relative;
    overflow: hidden;
}

.footer__main {
    padding: 4rem 0 2rem;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    position: relative;
    z-index: 2;
}

.footer__brand {
    max-width: 400px;
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-logo {
    height: 50px;
    width: auto;
}

.footer__brand-text {
    display: flex;
    flex-direction: column;
}

.footer__brand-name {
    font-family: var(--heading-font);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 0;
}

.footer__brand-tagline {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.footer__description {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

/* Social Media Section */
.footer__social {
    margin-top: 1rem;
}

.social__title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.social__links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: white;
    text-decoration: none;
    padding: 0.6rem 1rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    max-width: 180px;
    font-size: 0.9rem;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(5px);
}

.social-link.instagram:hover {
    background: rgba(225, 48, 108, 0.2);
    border-color: #E1306C;
}

.social-link.facebook:hover {
    background: rgba(24, 119, 242, 0.2);
    border-color: #1877F2;
}

.social-link.google:hover {
    background: rgba(66, 133, 244, 0.2);
    border-color: #4285F4;
}

.social-icon {
    font-size: 1.1rem;
}

.footer__links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer__section {
    display: flex;
    flex-direction: column;
}

.footer__title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    position: relative;
}

.footer__title::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 25px;
    height: 2px;
    background: var(--secondary-color);
    border-radius: 1px;
}

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

.footer__list li {
    margin-bottom: 0.6rem;
}

.footer__link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    display: block;
    padding: 0.2rem 0;
}

.footer__link:hover {
    color: var(--secondary-color);
    transform: translateX(3px);
}

.footer__contact {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
}

.contact-icon {
    font-size: 1rem;
    margin-top: 0.1rem;
    color: var(--secondary-color);
    min-width: 20px;
}

.contact-text {
    display: flex;
    flex-direction: column;
}

.contact-text p {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.3;
    font-size: 0.85rem;
}

.contact-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.85rem;
}

.contact-link:hover {
    color: var(--secondary-color);
}

.whatsapp-link:hover {
    color: #25D366;
}

.newsletter-text {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    font-size: 0.85rem;
    line-height: 1.4;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.newsletter-input {
    padding: 0.7rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-family: var(--body-font);
    font-size: 0.85rem;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 2px rgba(255, 210, 0, 0.2);
}

.btn--newsletter {
    background: linear-gradient(135deg, var(--secondary-color), #e6bd00);
    color: var(--charcoal-black);
    border: none;
    padding: 0.7rem 1rem;
    border-radius: 6px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 0.85rem;
}

.btn--newsletter:hover {
    background: linear-gradient(135deg, #e6bd00, var(--secondary-color));
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 210, 0, 0.3);
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    position: relative;
    z-index: 2;
}

.footer__copyright {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.footer__copyright p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.8rem;
}

.footer__address {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.75rem;
}

.footer__policies {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
}

.policy-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    position: relative;
}

.policy-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--secondary-color);
    transition: width 0.3s ease;
}

.policy-link:hover {
    color: var(--secondary-color);
}

.policy-link:hover::after {
    width: 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav__menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--warm-ivory);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: var(--transition);
        z-index: 999;
    }
    
    .nav__menu.active {
        left: 0;
    }
    
    .nav__list {
        flex-direction: column;
        gap: 2rem;
    }
    
    .nav__toggle {
        display: flex;
    }
    
    .nav__cta {
        margin-left: 0;
        margin-top: 2rem;
    }
    
    /* Mobile Hero Adjustments */
    .hero {
        height: 85vh;
    }
    
    .hero__content {
        padding: 2rem 1rem;
        margin: 0 1rem;
    }
    
    .hero__title {
        font-size: 2.8rem;
        margin-bottom: 1rem;
        gap: 0.5rem;
    }
    
    .title-plus {
        font-size: 2.2rem;
    }
    
    .hero__subtitle {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }
    
    .hero__description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        padding: 0;
    }
    
    .hero__buttons {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .cinematic-btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
        width: 100%;
        justify-content: center;
    }
    
    /* Reduce particle effects on mobile */
    .spice-transition-container {
        opacity: 0.3;
    }
    
    .spice-particle {
        width: 2px;
        height: 2px;
    }
    
    .hero__scroll-indicator {
        bottom: 1rem;
    }
    
    .section__title {
        font-size: 2.2rem;
    }
    
    .section__subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .intro-visual__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .quality__card {
        grid-template-columns: 1fr;
    }
    
    /* Mobile Product Cards */
    .products__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .luxury-showcase {
        margin: 0;
    }
    
    .luxury-showcase:hover {
        transform: translateY(-5px);
    }
    
    .product-card__stage {
        padding: 1.5rem;
    }
    
    .product-card__image {
        height: 200px;
    }
    
    .floating-label {
        font-size: 0.7rem;
        padding: 0.4rem 1rem;
    }
    
    /* Social Media Cards */
    .social-highlight__grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .social-card {
        padding: 1.5rem;
    }
    
    /* Footer Mobile */
    .footer__main {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 3rem 0 2rem;
    }
    
    .footer__links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer__bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .footer__policies {
        justify-content: center;
        gap: 1rem;
    }
    
    .newsletter-form {
        gap: 0.6rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    /* Ultra Mobile Hero */
    .hero {
        height: 80vh;
    }
    
    .hero__content {
        padding: 1.5rem 0.8rem;
    }
    
    .hero__title {
        font-size: 2.2rem;
        letter-spacing: 1px;
    }
    
    .title-plus {
        font-size: 1.8rem;
    }
    
    .hero__subtitle {
        font-size: 1.2rem;
    }
    
    .hero__description {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .cinematic-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }
    
    /* Further reduce particles */
    .spice-transition-container {
        opacity: 0.2;
    }
    
    .content-block {
        padding: 1.5rem;
    }
    
    .quality__content {
        padding: 1.5rem;
    }
    
    .product-card__content {
        padding: 1.2rem;
    }
    
    .product-card__title {
        font-size: 1.3rem;
    }
    
    .social-card {
        padding: 1.2rem;
    }
    
    .social-card__header {
        gap: 0.8rem;
        margin-bottom: 1rem;
    }
    
    .social-card .social-icon {
        font-size: 1.5rem;
        width: 40px;
        height: 40px;
    }
    
    .social-info h3 {
        font-size: 1.1rem;
    }
    
    .footer__brand {
        text-align: center;
    }
    
    .social__links {
        align-items: center;
    }
    
    .social-link {
        max-width: 160px;
        justify-content: center;
    }
}
/* Policy Pages Styles */
.policy-page {
    padding: 8rem 0 4rem;
    background: var(--warm-ivory);
    min-height: 100vh;
}

.policy-content {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.policy-title {
    font-size: 3rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 1rem;
    font-family: var(--heading-font);
}

.policy-updated {
    text-align: center;
    color: #666;
    font-style: italic;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--soft-sand);
}

.policy-section {
    margin-bottom: 2.5rem;
}

.policy-section h2 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-family: var(--heading-font);
    border-left: 4px solid var(--secondary-color);
    padding-left: 1rem;
}

.policy-section h3 {
    font-size: 1.2rem;
    color: var(--charcoal-black);
    margin: 1.5rem 0 0.5rem;
    font-weight: 600;
}

.policy-section p {
    line-height: 1.7;
    color: #555;
    margin-bottom: 1rem;
}

.policy-section ul,
.policy-section ol {
    margin: 1rem 0;
    padding-left: 2rem;
}

.policy-section li {
    line-height: 1.6;
    color: #555;
    margin-bottom: 0.5rem;
}

.policy-section strong {
    color: var(--primary-color);
    font-weight: 600;
}

.contact-info {
    background: var(--soft-sand);
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 1rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
    color: var(--charcoal-black);
}

.shipping-table {
    background: var(--warm-ivory);
    padding: 1.5rem;
    border-radius: 10px;
    margin: 1rem 0;
}

.shipping-table h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.shipping-table ul {
    margin-bottom: 1.5rem;
}

/* Mobile Responsiveness for Policy Pages */
@media (max-width: 768px) {
    .policy-page {
        padding: 6rem 0 3rem;
    }
    
    .policy-content {
        margin: 0 1rem;
        padding: 2rem 1.5rem;
    }
    
    .policy-title {
        font-size: 2.2rem;
    }
    
    .policy-section h2 {
        font-size: 1.3rem;
    }
    
    .policy-section ul,
    .policy-section ol {
        padding-left: 1.5rem;
    }
}

@media (max-width: 480px) {
    .policy-content {
        padding: 1.5rem 1rem;
    }
    
    .policy-title {
        font-size: 1.8rem;
    }
    
    .policy-section h2 {
        font-size: 1.2rem;
    }
}
/* SVG Icon Styles */
.nav__icon svg,
.social-icon svg,
.whatsapp-icon svg {
    display: block;
    width: 100%;
    height: 100%;
}

.nav__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
}

.whatsapp-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
}

.footer .social-icon {
    width: 16px;
    height: 16px;
}