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

html {
    overflow-x: hidden;
}

/* Prevent horizontal overflow */
* {
    max-width: 100%;
}


/* Lenis handles smooth scrolling - no CSS needed */

body {
    font-family: 'Source Serif Pro', serif;
    font-weight: 400;
    line-height: 1.7;
    color: #2c2c2c;
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3 {

    font-family: 'Merriweather', serif;
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.2;
}

h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    font-weight: 900;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

h3 {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

p {
    font-family: 'Crimson Text', serif;
    font-size: 1.1rem;
    line-height: 1.8;
    font-weight: 400;
}

.hero-subtitle, .hero-tagline {
    font-family: 'Crimson Text', serif;
    font-style: italic;
    font-weight: 400;
}

/* Simple Hero Section */
.hero {
    height: 100vh;

    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}


.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.hero-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.5s ease;
}

/* Show background image if video fails to load */
.hero-video:not(:has(video[src])) + .hero-bg {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
}

.hero-logo {
    width: 150px;
    height: auto;
    margin-bottom: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

.hero-logo:hover {
    transform: scale(1.05);
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.4;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 30%, #ffffff 70%, #fafafa 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
    animation: fadeInUp 1.2s ease-out;
}

.hero-subtitle {
    font-size: 2.2rem;
    font-weight: 400;
    font-style: italic;
    margin-bottom: 3rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.1em;
    animation: fadeInUp 1.2s ease-out 0.3s both;
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    animation: fadeInUp 1.2s ease-out 0.6s both;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.scroll-indicator:hover {
    transform: translateY(-5px);
}

.scroll-indicator span {
    font-family: 'Crimson Text', serif;
    font-style: italic;
    font-size: 1rem;
    font-weight: 400;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.scroll-arrow {
    width: 2px;
    height: 30px;
    background: white;
    position: relative;
    animation: bounce 2s infinite;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -4px;
    width: 10px;
    height: 10px;
    border-right: 2px solid white;
    border-bottom: 2px solid white;
    transform: rotate(45deg);
}

/* Remove old panorama styles - using simple hero instead */

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 215, 0, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 165, 0, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    animation: heroGlow 8s ease-in-out infinite alternate;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    background: linear-gradient(45deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.3) 100%);
    backdrop-filter: blur(1px);
}

.hero-content {
    text-align: center;
    color: white;

    z-index: 3;
    position: relative;

    max-width: 900px;
    padding: 0 20px;
}

.slider-navigation {
    position: absolute;
    bottom: 30px;
    right: 30px;
    z-index: 4;
}

.nav-dots {
    display: flex;
    gap: 12px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.6);
}

.dot.active {
    background: rgba(255, 255, 255, 0.9);
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.dot:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: scale(1.1);
}

.hero-title {

    font-size: 5.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
    animation: fadeInUp 1.2s ease-out;
    background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 30%, #ffffff 70%, #fafafa 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
}

.hero-subtitle {
    font-size: 1.8rem;

    margin-bottom: 0.8rem;
    font-weight: 400;
    animation: fadeInUp 1.2s ease-out 0.3s both;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.1em;
}

.hero-tagline {

    font-size: 1.4rem;
    margin-bottom: 4rem;
    font-weight: 400;

    animation: fadeInUp 1.2s ease-out 0.6s both;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    opacity: 0.95;
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 15px;
    animation: fadeInUp 1.2s ease-out 0.9s both;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.scroll-indicator:hover {
    transform: translateY(-5px);
}

.scroll-indicator span {

    font-family: 'Crimson Text', serif;
    font-style: italic;
    font-size: 1rem;
    font-weight: 400;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.scroll-arrow {
    width: 2px;
    height: 30px;
    background: white;
    position: relative;

    animation: bounce 2s infinite;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -4px;
    width: 10px;
    height: 10px;
    border-right: 2px solid white;
    border-bottom: 2px solid white;
    transform: rotate(45deg);
}

/* Story Introduction */
.story-intro {
    padding: 100px 0;

    background: #F5F5DC;
    position: relative;
}

.story-intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;

    bottom: 0;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="leaves" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M25,5 Q35,15 25,25 Q15,15 25,5" fill="rgba(139,69,19,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23leaves)"/></svg>');
    opacity: 0.3;
}

.story-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;

    position: relative;
    z-index: 2;
}

.story-content h2 {
    color: #8B4513;
    margin-bottom: 2rem;
}

.story-content p {
    font-size: 1.2rem;
    margin-bottom: 3rem;

    color: #5D4E37;
}

.story-image {
    margin-top: 3rem;
    width: 100%;
    margin: 0 auto;
    max-width: 30rem;
    border-radius: 20px;
    overflow: hidden;
    
}

.story-image img {
    width: 100%;
    height: auto;
    border-radius: 20px
}

.image-placeholder {
    height: 400px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.kerala-landscape {

    background: linear-gradient(135deg, rgba(34, 139, 34, 0.8) 0%, rgba(50, 205, 50, 0.8) 50%, rgba(144, 238, 144, 0.8) 100%),
                url('https://images.unsplash.com/photo-1578662996442-48f60103fc96?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

/* Spice Journey Timeline */
.spice-journey {
    padding: 100px 0;

    background: #FDF5E6;
    position: relative;
}

.spice-journey h2 {
    text-align: center;
    color: #8B4513;
    margin-bottom: 4rem;
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #8B4513 0%, #D2691E 100%);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    margin-bottom: 4rem;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-icon {

    width: 60px;
    height: 60px;
    border-radius: 50%;

    background: #8B4513;
    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 1.5rem;
    color: white;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;

    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.timeline-content {

    width: 45%;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);

    position: relative;
}

.timeline-content h3 {
    color: #8B4513;
    margin-bottom: 1rem;
}

.timeline-content p {
    color: #5D4E37;
    line-height: 1.6;
}

/* Spice Showcase Sections */
.spice-showcase {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.spice-showcase.turmeric {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
}

.spice-showcase.cardamom {
    background: linear-gradient(135deg, #90EE90 0%, #32CD32 100%);
}

.spice-showcase.pepper {

    background: linear-gradient(135deg, #2F4F4F 0%, #708090 100%);
}

.spice-showcase.cinnamon {
    background: linear-gradient(135deg, #D2691E 0%, #CD853F 100%);
}

.spice-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.spice-text {
    color: white;
}

.spice-text h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.spice-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;

    line-height: 1.6;
}

.spice-features {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.spice-features span {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.turmeric-img {

    background: linear-gradient(135deg, rgba(255, 215, 0, 0.9) 0%, rgba(255, 165, 0, 0.9) 100%),
                url('https://images.unsplash.com/photo-1609501676725-7186f3a0a2b9?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.cardamom-img {

    background: linear-gradient(135deg, rgba(144, 238, 144, 0.9) 0%, rgba(50, 205, 50, 0.9) 100%),
                url('https://images.unsplash.com/photo-1596040033229-a9821ebd058d?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.pepper-img {

    background: linear-gradient(135deg, rgba(47, 79, 79, 0.9) 0%, rgba(112, 128, 144, 0.9) 100%),
                url('https://images.unsplash.com/photo-1596040033229-a9821ebd058d?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.cinnamon-img {

    background: linear-gradient(135deg, rgba(210, 105, 30, 0.9) 0%, rgba(205, 133, 63, 0.9) 100%),
                url('https://images.unsplash.com/photo-1609501676725-7186f3a0a2b9?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Heritage Section */
.heritage {
    padding: 100px 0;

    background: #DEB887;
    position: relative;
}


.heritage::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="jute" width="20" height="20" patternUnits="userSpaceOnUse"><rect width="20" height="20" fill="rgba(139,69,19,0.05)"/><path d="M0,10 L20,10" stroke="rgba(139,69,19,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23jute)"/></svg>');
    opacity: 0.5;
}

.heritage-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;

    position: relative;
    z-index: 2;
}

.heritage-content h2 {
    color: #8B4513;
    margin-bottom: 2rem;
}

.heritage-content p {
    font-size: 1.2rem;
    margin-bottom: 3rem;

    color: #5D4E37;
}

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

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: #8B4513;
    font-family: 'Playfair Display', serif;
}

.stat-label {
    font-size: 1rem;
    color: #5D4E37;
    font-weight: 500;
}

/* Closing Section */
.closing {
    padding: 100px 0;

    background: linear-gradient(135deg, #8B4513 0%, #D2691E 50%, #CD853F 100%);
    text-align: center;

    color: white;
    position: relative;
}

.closing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="spice" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="25" cy="25" r="1.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23spice)"/></svg>');
    opacity: 0.3;
}

.closing-content {
    max-width: 800px;
    margin: 0 auto;

    position: relative;
    z-index: 2;
}

.closing-content h2 {

    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.closing-tagline {

    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 300;
    font-style: italic;
}

.closing-content p {
    font-size: 1.2rem;

    line-height: 1.6;
    opacity: 0.9;
}

/* Contact Section */
.contact {
    padding: 100px 0;

    background: #FDF5E6;
}

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

.contact-content h2 {
    color: #8B4513;
    margin-bottom: 1rem;
}

.contact-content p {
    font-size: 1.2rem;
    color: #5D4E37;
    margin-bottom: 3rem;
}

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

.contact-item h3 {
    color: #8B4513;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: #5D4E37;

    font-size: 1rem;
}

.contact-form {

    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;

    border: 2px solid #DEB887;
    border-radius: 10px;
    font-size: 1rem;

    font-family: 'Crimson Text', serif;
    background: white;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8B4513;
}

.submit-btn {
    background: linear-gradient(135deg, #8B4513 0%, #D2691E 100%);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;

    font-weight: 700;
    font-family: 'Merriweather', serif;
    cursor: pointer;

    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

    box-shadow: 0 10px 20px rgba(139, 69, 19, 0.3);
}

/* Footer */
.footer {

    padding: 2rem 0;
    background: #8B4513;
    color: white;
    text-align: center;
}

.footer p {
    opacity: 0.8;
}


/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatParticle {
    0%, 100% { 
        transform: translateY(0px) translateX(0px) rotate(0deg); 
        opacity: 0.6; 
    }
    25% { 
        transform: translateY(-20px) translateX(10px) rotate(90deg); 
        opacity: 0.8; 
    }
    50% { 
        transform: translateY(-40px) translateX(-5px) rotate(180deg); 
        opacity: 1; 
    }
    75% { 
        transform: translateY(-20px) translateX(-10px) rotate(270deg); 
        opacity: 0.8; 
    }
}

@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-100px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(100px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes zoomIn {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {

    .spice-image {
        width: 320px;
        height: auto;
        right: 5%;
        transform: translateY(-50%) rotate(-3deg);
    }
    
    .spice-image:hover {
        transform: translateY(-50%) rotate(0deg) scale(1.05);
    }

    .hero-logo {
        width: 100px;
        margin-bottom: 15px;
    }
    
    .hero-title {
        font-size: 3.5rem;
        font-weight: 900;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }

    
    .hero-tagline {
        font-size: 1.1rem;
    }
    
    h2 {
        font-size: 2.2rem;
        font-weight: 700;
    }
    
    h3 {
        font-size: 1.4rem;
        font-weight: 700;
    }
    
    p {
        font-size: 1rem;
        line-height: 1.7;
    }
    
    .spice-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    
    .spice-text h2 {
        font-size: 2rem;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        flex-direction: column !important;
        padding-left: 80px;
    }
    
    .timeline-icon {

        left: 30px;
        transform: translateX(-50%);
    }
    
    .timeline-content {

        width: 100%;
    }
    
    .heritage-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-info {
        grid-template-columns: 1fr;

        gap: 1rem;
    }
    
    .contact-content h2 {
        font-size: 2rem;
    }

    
    .closing-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-logo {
        width: 100px;
        margin-bottom: 25px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .spice-text h2 {

        font-size: 1.8rem;
    }
    
    .image-placeholder {
        height: 250px;
    }
}

/* Spice Showcase Container */
.spice-showcase-container {
    height: 500vh; /* 5 spices × 100vh */
    height: auto; /* Allow flexible height */
    position: relative;
}

.spice-section {
    min-height: 100vh;
    height: auto;
    position: sticky;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 60px 20px;
}

/* Spice Visual Elements */
.spice-visual {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.spice-content {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    width: 100%;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.spice-info {
    max-width: 500px;
    color: white;
}

.spice-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.spice-description {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.spice-features {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.feature-tag {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Individual Spice Section Themes */
.turmeric-section {
    background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 30%, #ffffff 70%, #fafafa 100%);
}

.cloves-section {
    background: linear-gradient(135deg, #4A2C2A 0%, #8B4513 50%, #A0522D 100%);
}

.ginger-section {
    background: linear-gradient(135deg, #5D4037 0%, #8D6E63 50%, #A1887F 100%);
}

.cardamom-section {
    background: linear-gradient(135deg, #2E7D32 0%, #4CAF50 50%, #81C784 100%);
}

.pepper-section {
    background: linear-gradient(135deg, #2F2F2F 0%, #1A1A1A 50%, #000000 100%);
}

.cinnamon-section {
    background: linear-gradient(135deg, #A0522D 0%, #CD853F 50%, #DEB887 100%);
}

.and-more-section {
    background: linear-gradient(135deg, #2C3E50 0%, #34495E 50%, #5D6D7E 100%);
}

/* And More Section Styling */
.and-more-content {
    display: flex;
    align-items: center;
    min-height: 100vh;
    padding: 0 5%;
    gap: 5%;
}

.and-more-visual {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.spice-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    max-width: 450px;
    z-index: 2;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.spice-item {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 12px;
    padding: 20px 15px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    position: relative;
}

.spice-item:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

.spice-icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
    display: block;
}

.spice-name {
    color: white;
    font-size: 1rem;
    font-weight: 600;
    text-transform: capitalize;
    text-align: center;
    line-height: 1.2;
    letter-spacing: 0.5px;
}

.floating-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-particles .particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
}

.floating-particles .particle:nth-child(1) { top: 10%; left: 20%; animation: float 4s ease-in-out infinite; }
.floating-particles .particle:nth-child(2) { top: 20%; left: 80%; animation: float 4s ease-in-out infinite 0.5s; }
.floating-particles .particle:nth-child(3) { top: 60%; left: 10%; animation: float 4s ease-in-out infinite 1s; }
.floating-particles .particle:nth-child(4) { top: 70%; left: 90%; animation: float 4s ease-in-out infinite 1.5s; }
.floating-particles .particle:nth-child(5) { top: 40%; left: 50%; animation: float 4s ease-in-out infinite 2s; }
.floating-particles .particle:nth-child(6) { top: 80%; left: 30%; animation: float 4s ease-in-out infinite 2.5s; }

.and-more-text {
    flex: 1;
    color: white;
    z-index: 2;
}

.and-more-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #fff, #f0f0f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.and-more-description {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.9;
}

.and-more-features {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.cta-button {
    margin-top: 30px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    padding: 12px 0;
    border-bottom: 2px solid transparent;
    position: relative;
}

.btn-primary:hover {
    color: rgba(255, 255, 255, 0.8);
    border-bottom-color: rgba(255, 255, 255, 0.6);
    transform: translateX(5px);
}

.btn-primary::after {
    content: '→';
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.btn-primary:hover::after {
    transform: translateX(3px);
}

/* Responsive Design for And More Section */
@media (max-width: 768px) {
    .and-more-content {
        flex-direction: column;
        padding: 5% 3%;
        gap: 3%;
    }
    
    .spice-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
        max-width: 350px;
        padding: 15px;
    }
    
    .spice-item {
        padding: 15px 10px;
        min-height: 45px;
    }
    
    .spice-name {
        font-size: 0.9rem;
        font-weight: 500;
    }
    
    .btn-primary {
        font-size: 1rem;
        padding: 10px 0;
    }
    
    
    .spice-icon {
        font-size: 2rem;
    }

    
    .spice-name {
        font-size: 0.8rem;
    }
    
    .and-more-title {
        font-size: 2rem;
        text-align: center;
    }
    
    .and-more-description {
        font-size: 1rem;
        text-align: center;
    }
    
    .and-more-features {
        justify-content: center;
    }
}

/* Spice Images - Free Floating */
.spice-image {
    position: absolute;
    top: 50%;
    right: 10%;
    transform: translateY(-50%) rotate(-5deg);
    width: 500px;
    max-width: 40vw;
    height: auto;
    object-fit: contain;
    border-radius: 0;
    box-shadow: none;
    z-index: 3;
    transition: all 0.4s ease;
    filter: none;
}

.spice-image:hover {
    transform: translateY(-50%) rotate(0deg) scale(1.1);
    box-shadow: none;
    filter: none;
}

.golden-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #FFD700;
    border-radius: 50%;
    box-shadow: 0 0 15px #FFD700;
    z-index: 3;
}

.particle:nth-child(1) { top: 20%; left: 20%; animation: float 3s ease-in-out infinite; }
.particle:nth-child(2) { top: 30%; left: 70%; animation: float 3s ease-in-out infinite 0.5s; }
.particle:nth-child(3) { top: 60%; left: 30%; animation: float 3s ease-in-out infinite 1s; }
.particle:nth-child(4) { top: 70%; left: 80%; animation: float 3s ease-in-out infinite 1.5s; }
.particle:nth-child(5) { top: 40%; left: 50%; animation: float 3s ease-in-out infinite 2s; }

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.7; }
    50% { transform: translateY(-20px) rotate(180deg); opacity: 1; }
}

.golden-dust {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 70%, rgba(255, 215, 0, 0.1), transparent 70%);
    animation: dustGlow 4s ease-in-out infinite;
    z-index: 1;
}

@keyframes dustGlow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; }
}

/* Ginger Particles */
.ginger-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.ginger-particles .particle {
    background: #FF6B35 !important;
    box-shadow: 0 0 15px #FF6B35 !important;
}

.ginger-dust {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 40% 60%, rgba(255, 107, 53, 0.1), transparent 70%);
    animation: dustGlow 4s ease-in-out infinite;
    z-index: 1;
}

/* Cardamom Particles */
.cardamom-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.cardamom-particles .particle {
    background: #4A7C59 !important;
    box-shadow: 0 0 15px #4A7C59 !important;
}

.cardamom-dust {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(74, 124, 89, 0.1), transparent 70%);
    animation: dustGlow 4s ease-in-out infinite;
    z-index: 1;
}

/* Pepper Particles */
.pepper-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.pepper-particles .particle {
    background: #2F2F2F !important;
    box-shadow: 0 0 15px #2F2F2F !important;
}

.pepper-dust {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 60% 40%, rgba(47, 47, 47, 0.1), transparent 70%);
    animation: dustGlow 4s ease-in-out infinite;
    z-index: 1;
}

/* Cinnamon Particles */
.cinnamon-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.cinnamon-particles .particle {
    background: #8B4513 !important;
    box-shadow: 0 0 15px #8B4513 !important;
}

.cinnamon-dust {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(139, 69, 19, 0.1), transparent 70%);
    animation: dustGlow 4s ease-in-out infinite;
    z-index: 1;
}

/* Cloves Particles */
.cloves-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.cloves-particles .particle {
    background: #8B0000 !important;
    box-shadow: 0 0 15px #8B0000 !important;
}

.cloves-dust {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(139, 0, 0, 0.1), transparent 70%);
    animation: dustGlow 4s ease-in-out infinite;
    z-index: 1;
}

/* Ginger Visual Elements - Removed ginger-root, now using spice-image */

.ginger-leaves {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
}

.leaf {
    position: absolute;
    width: 60px;
    height: 30px;
    background: linear-gradient(45deg, #228B22, #32CD32);
    border-radius: 0 100% 0 100%;
    box-shadow: 0 0 10px rgba(34, 139, 34, 0.5);
    z-index: 3;
}

.leaf:nth-child(1) { transform: rotate(-30deg); animation: sway 2s ease-in-out infinite; }
.leaf:nth-child(2) { transform: rotate(30deg) translateX(20px); animation: sway 2s ease-in-out infinite 0.5s; }
.leaf:nth-child(3) { transform: rotate(0deg) translateX(-20px); animation: sway 2s ease-in-out infinite 1s; }

@keyframes sway {
    0%, 100% { transform: rotate(-30deg); }
    50% { transform: rotate(-45deg); }
}

.water-droplets {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.droplet {
    position: absolute;
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50% 50% 50% 0;
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
    z-index: 3;
}

.droplet:nth-child(1) { top: 30%; left: 30%; animation: drip 2s ease-in-out infinite; }
.droplet:nth-child(2) { top: 50%; left: 60%; animation: drip 2s ease-in-out infinite 0.7s; }
.droplet:nth-child(3) { top: 70%; left: 40%; animation: drip 2s ease-in-out infinite 1.4s; }

@keyframes drip {
    0% { transform: translateY(0px); opacity: 1; }
    100% { transform: translateY(20px); opacity: 0; }
}

/* Cardamom Visual Elements - Removed cardamom-pods, now using spice-image */

.pod:nth-child(1) { top: 0; left: 0; animation: float3D 4s ease-in-out infinite; }
.pod:nth-child(2) { top: 0; left: 60px; animation: float3D 4s ease-in-out infinite 1s; }
.pod:nth-child(3) { top: 0; left: 120px; animation: float3D 4s ease-in-out infinite 2s; }

@keyframes float3D {
    0%, 100% { transform: rotateY(0deg) rotateX(0deg); }
    25% { transform: rotateY(90deg) rotateX(10deg); }
    50% { transform: rotateY(180deg) rotateX(0deg); }
    75% { transform: rotateY(270deg) rotateX(-10deg); }
}

.aromatic-steam {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.steam {
    position: absolute;
    width: 2px;
    height: 40px;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.8), transparent);
    border-radius: 2px;
    animation: rise 3s ease-in-out infinite;
    z-index: 2;
}

.steam:nth-child(1) { top: 60%; left: 30%; animation: rise 3s ease-in-out infinite; }
.steam:nth-child(2) { top: 50%; left: 50%; animation: rise 3s ease-in-out infinite 1s; }
.steam:nth-child(3) { top: 70%; left: 70%; animation: rise 3s ease-in-out infinite 2s; }

@keyframes rise {
    0% { transform: translateY(0px); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateY(-100px); opacity: 0; }
}

/* Pepper Visual Elements - Removed pepper-vine, now using spice-image */

.pepper-berries {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.berry {
    position: absolute;
    width: 20px;
    height: 20px;
    background: linear-gradient(45deg, #2F2F2F, #1A1A1A);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    animation: fall 2s ease-in-out infinite;
    z-index: 3;
}

.berry:nth-child(1) { top: 0; left: 20%; animation: fall 2s ease-in-out infinite; }
.berry:nth-child(2) { top: 0; left: 40%; animation: fall 2s ease-in-out infinite 0.5s; }
.berry:nth-child(3) { top: 0; left: 60%; animation: fall 2s ease-in-out infinite 1s; }
.berry:nth-child(4) { top: 0; left: 80%; animation: fall 2s ease-in-out infinite 1.5s; }

@keyframes fall {
    0% { transform: translateY(0px) rotate(0deg); }
    100% { transform: translateY(100vh) rotate(360deg); }
}

.dramatic-lighting {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.1), transparent 70%);
    animation: flicker 3s ease-in-out infinite;
}

@keyframes flicker {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; }
}

/* Cinnamon Visual Elements - Removed cinnamon-bark, now using spice-image */

.cinnamon-rings {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.ring {
    position: absolute;
    width: 100px;
    height: 100px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
    z-index: 3;
}

.ring:nth-child(1) { animation: pulse 2s ease-in-out infinite; }
.ring:nth-child(2) { width: 150px; height: 150px; animation: pulse 2s ease-in-out infinite 0.5s; }
.ring:nth-child(3) { width: 200px; height: 200px; animation: pulse 2s ease-in-out infinite 1s; }

@keyframes pulse {
    0% { transform: scale(0.8); opacity: 0.8; }
    50% { transform: scale(1.2); opacity: 0.4; }
    100% { transform: scale(0.8); opacity: 0.8; }
}

.warm-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.1), transparent 70%);
    animation: glow 4s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* ===========================================
   RESPONSIVE DESIGN - MOBILE FIRST
   =========================================== */

/* Remove 100vh from spice sections for better mobile layout */
.spice-section {
    min-height: 100vh;
    height: auto;
    position: sticky;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 60px 20px;
}

/* Mobile Phones - Primary Breakpoint */
@media (max-width: 768px) {
    /* Spice Sections - Mobile Layout */
    .spice-section {
        min-height: auto !important;
        height: auto !important;
        position: relative !important;
        top: auto !important;
        padding: 60px 15px !important;
        flex-direction: column !important;
        text-align: center !important;
        overflow: visible !important;
    }

    .spice-content {
        order: 1 !important;
        padding: 0 !important;
        text-align: center !important;
        position: relative !important;
        z-index: 2 !important;
        width: 100% !important;
        margin: 0 auto 30px auto !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        max-width: 100% !important;
    }

    .spice-info {
        max-width: 100% !important;
        width: 100% !important;
        text-align: center !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .spice-visual {
        order: 2 !important;
        position: relative !important;
        width: 100% !important;
        height: auto !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        margin-top: 20px !important;
    }

    /* Spice Images - Mobile */
    .spice-image {
        width: 300px !important;
        max-width: none !important;
        height: auto !important;
        position: relative !important;
        right: auto !important;
        left: auto !important;
        top: auto !important;
        transform: rotate(-3deg) !important;
        margin: 0 auto !important;
        display: block !important;
    }
    
    .spice-image:hover {
        transform: rotate(0deg) scale(1.05) !important;
    }

    /* Typography - Mobile */
    .spice-title {
        font-size: 1.8rem !important;
        margin-bottom: 10px !important;
        line-height: 1.2 !important;
        font-weight: 700 !important;
    }

    .spice-description {
        font-size: 0.9rem !important;
        line-height: 1.4 !important;
        margin-bottom: 15px !important;
    }

    .spice-features {
        justify-content: center !important;
        flex-wrap: wrap !important;
        gap: 8px !important;
        row-gap: 12px !important;
        margin-bottom: 20px !important;
    }

    .feature-tag {
        font-size: 0.75rem !important;
        padding: 6px 10px !important;
    }

    /* Particle adjustments for mobile */
    .particle {
        width: 4px !important;
        height: 4px !important;
    }

    /* Hero Section - Mobile */
    .hero-title {
        font-size: 3.5rem !important;
        line-height: 1.2 !important;
    }
    
    .hero-subtitle {
        font-size: 1.4rem !important;
    }
    
    .hero-tagline {
        font-size: 1.1rem !important;
    }

    /* Other sections - Mobile */
    .story-intro,
    .spice-journey,
    .heritage,
    .closing,
    .contact {
        padding: 60px 0 !important;
    }

    .timeline-content {
        width: 100% !important;
    }

    .contact-info {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
}

/* Extra Small Mobile Phones */
@media (max-width: 480px) {
    .spice-section {
        padding: 60px 10px !important;
        min-height: 80vh !important;
    }

    .spice-content {
        margin: 0 auto 20px auto !important;
        padding: 0 10px !important;
    }

    .spice-info {
        max-width: 100% !important;
        width: 100% !important;
        text-align: center !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        row-gap: 1rem !important;
    }

    .spice-image {
        width: 300px !important;
        max-width: none !important;
        transform: rotate(-2deg) !important;
    }

    .spice-title {
        font-size: 2rem !important;
        margin-bottom: 8px !important;
        line-height: 1.1 !important;
    }

    .spice-description {
        font-size: 1rem !important;
        line-height: 1.3 !important;
        margin-bottom: 12px !important;
    }

    .spice-features {
        gap: 6px !important;
        row-gap: 10px !important;
        margin-bottom: 15px !important;
    }

    .feature-tag {
        font-size: 0.7rem !important;
        padding: 4px 8px !important;
    }

    .particle {
        width: 3px !important;
        height: 3px !important;
    }

    .hero-title {
        font-size: 2.8rem !important;
    }
    
    .hero-subtitle {
        font-size: 1.2rem !important;
    }
    
    .hero-tagline {
        font-size: 1rem !important;
    }

    .cta-button {
        text-align: center !important;
    }
}

/* Floating WhatsApp Icon */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Contact links styling */
.contact-info a {
    color: #8B4513;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #A0522D;
    text-decoration: underline;
}

.contact-info a i {
    margin-right: 8px;
    color: #8B4513;
    transition: color 0.3s ease;
}

.contact-info a:hover i {
    color: #A0522D;
}

/* Landscape Mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .spice-section {
        min-height: 100vh !important;
        padding: 40px 15px !important;
    }

    .spice-content {
        margin: 0 auto 20px auto !important;
        padding: 0 15px !important;
    }

    .spice-info {
        max-width: 100% !important;
        width: 100% !important;
        text-align: center !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .spice-image {
        width: 280px !important;
        max-width: none !important;
        transform: rotate(-2deg) !important;
    }

    .spice-title {
        font-size: 1.6rem !important;
        margin-bottom: 8px !important;
    }

    .spice-description {
        font-size: 0.85rem !important;
        margin-bottom: 12px !important;
    }

    .spice-features {
        gap: 8px !important;
        row-gap: 10px !important;
    }

    .feature-tag {
        font-size: 0.75rem !important;
        padding: 5px 9px !important;
    }
}

/* Tablets */
@media (max-width: 1024px) and (min-width: 769px) {
    .spice-image {
        width: 320px !important;
        right: 5% !important;
    }

    .spice-title {
        font-size: 3rem !important;
    }
    
    .spice-description {
        font-size: 1.1rem !important;
    }
}