/* Color Variables */
:root {
    --primary: #E53935;
    /* Vibrant red */
    --primary-dark: #C62828;
    --secondary: #FB8C00;
    /* Orange */
    --dark: #212121;
    --light: #f5f5f5;
    --white: #ffffff;
    --black: #000000;
    --gray: #757575;
    --gray-light: #e0e0e0;
}

/* Base Styles with .ttb class */
.ttb {
    /*font-family: 'YourFontFamily', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif; */
    letter-spacing: -0.02em;
}

/* Modern store styles 
    .hero-section {
        background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
        color: var(--white);
        padding: 5rem 1rem;
        text-align: center;
        position: relative;
        overflow: hidden;
    }
*/
.hero-section {
    background: linear-gradient(135deg, #ffffff 0%, #220909 100%);
    color: var(--white);
    padding: 5rem 1rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}



.line {
    height: 5px;
    width: 70px;
    background-color: #822a34;
    border-radius: 30px;
}

.hero-title {
    color: revert;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-subtitle {
    font-size: 1.5rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    opacity: 0.9;
    opacity: 0;
    margin-left: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.1s;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.4'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 4rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    /*background: var(--white); */
    border-radius: 12px;
    padding: 2rem;
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05); */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-card:nth-child(1) {
    transition-delay: 0.1s;
}

.feature-card:nth-child(2) {
    transition-delay: 0.2s;
}

.feature-card:nth-child(3) {
    transition-delay: 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
    background: hsla(0, 0%, 100%, .08);
    /* background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); */
    border-radius: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.small-images {
    width: 40px;
    height: 40px;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    /* color: var(--dark); */
    color: #b89d9d;
}

.features-section {
    background: #3a190b;
}

.feature-desc {
    color: var(--white);
    line-height: 1.6;
}

.category-section {
    padding: 4rem 1rem;
    background: var(--light);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--dark);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}


.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.category-card {
    margin: auto;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: #3d2236;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}


.category-card:nth-child(1) {
    transition-delay: 0.1s;
}

.category-card:nth-child(2) {
    transition-delay: 0.2s;
}

.category-card:nth-child(3) {
    transition-delay: 0.3s;
}

.category-card:nth-child(4) {
    transition-delay: 0.4s;
}

.category-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.category-image {
    position: relative;
    margin: auto;
    width: 100px;
    background-repeat: no-repeat;
    height: 200px;
    background-size: contain;
    background-position: center;
}


.category-info {
    padding: 1.5rem;
}

.category-name {
    width: 100%;
    text-align: center;
    background-color: hsla(0, 0%, 100%, .08);
    top: 150px;
    position: absolute;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #fff;
}

.product-count {
    color: var(--gray);
    font-size: 0.9rem;
}

.testimonial-section {
    padding: 5rem 1rem;
    background: var(--white);
}

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

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

.testimonial-card {
    background: var(--light);
    padding: 2rem;
    border-radius: 12px;
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-card:nth-child(1) {
    transition-delay: 0.1s;
}

.testimonial-card:nth-child(2) {
    transition-delay: 0.2s;
}

.testimonial-card:nth-child(3) {
    transition-delay: 0.3s;
}

.testimonial-quote {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--dark);
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 1rem;
    object-fit: cover;
}

.author-name {
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--dark);
}

.author-title {
    color: var(--gray);
    font-size: 0.9rem;
}

.cta-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--dark) 100%);
    color: var(--white);
    padding: 5rem 1rem;
    text-align: center;
}

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

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.cta-text {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.1s;
}

.inp {
    height: 40px;
}

.cta-button {
    display: inline-block;
    background: #a42626;
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}



/* Animation Classes */
.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Product Cards Animation */
.plists .product-card {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.cc {
    align-items: center;
}

@media (max-width: 950px) {
    .category-grid {
        display: flex;
        gap: 0.2rem;
    }

    .cta-button {
        min-width: 160px;
        padding: 0.4rem 1.5rem;


    }

    .big-image {
        height: 200px;
        width: 200px;
    }

    .hero-title {
        font-size: 1.5rem;
    }

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

    .category-card {
        height: 100px;
        width: 100px;
    }

    .category-image {
        position: relative;
        margin: auto;
        width: 50px;
        background-repeat: no-repeat;
        height: 100px;
        background-size: contain;
        background-position: center;
    }
}



.left {
    text-align: left;
}

.big-image {
    height: 400px;
    width: 400px;
}

.grid {
    grid-template-columns: 1fr 1fr;
    display: grid;
    justify-content: center;
}

@media (max-width: 768px) {
    .category-grid {
        display: flex;
    }

    .big-image {
        height: 159px;
        width: 200px;
    }

    .category-card {
        height: 90px;
        width: 90px;
    }

    .category-image {
        position: relative;
        margin: auto;
        width: 50px;
        background-repeat: no-repeat;
        height: 100px;
        background-size: contain;
        background-position: center;
    }


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

    .cta-title {
        font-size: 2rem;
    }
}