:root {
    --c-pink: #D291BC;
    --c-pink-dark: #b16d9b;
    --c-brown-dark: #5c023d;
    --c-brown-light: #5C4033;
    --c-lavender-bg: #fdf7ff;
    --c-light-bg: #fff;
    --c-text: #444;
}

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    background-color: var(--c-light-bg);
    color: var(--c-text);
    line-height: 1.7;
    overflow-x: hidden;
}

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

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    color: var(--c-brown-dark);
}

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

.main-header {
    background: rgba(255, 255, 255, .95);
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    max-height: 60px;
}

.main-nav a {
    margin: 0 15px;
    text-decoration: none;
    color: var(--c-brown-light);
    font-weight: 600;
    transition: color .3s;
    position: relative;
    padding-bottom: 5px;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--c-pink);
    transition: width .4s ease;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--c-pink);
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

.main-nav a.btn-login {
    background-color: var(--c-pink);
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    transition: all .3s ease;
}

.main-nav a.btn-login:hover {
    color: #fff;
    background-color: var(--c-pink-dark);
    transform: scale(1.05);
}

.main-nav a.btn-login::after {
    display: none;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    background: none;
    border: none;
}

/* --- Hero Section with Video --- */
.hero-section {
    position: relative;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
}

#hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -100;
    transform: translateX(-50%) translateY(-50%);
    background-size: cover;
    filter: brightness(110%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4); 
}

.hero-content {
    position: relative;
    z-index: 1;
    animation: fadeInUp 1.2s ease-out;
}

/* === UPDATED HERO TITLE STYLE WITH OUTLINE AND SHADOW === */
.hero-title {
    font-size: 4em;
    margin: 0;
    color: #c8ee07; /* Main text color */
    /* Best Shadow Effect */
    text-shadow: 
        0px 2px 4px rgba(0, 0, 0, 0.5),  /* Main shadow for depth */
        0px 5px 15px rgba(0, 0, 0, 0.3); /* Softer, larger shadow for ambiance */
    
    /* Outline Effect (using multiple shadows) */
    -webkit-text-stroke: 1px var(--c-pink-dark); /* For browsers that support it */
    paint-order: stroke fill; /* Ensures stroke is drawn behind the fill */
}


.hero-subtitle {
    font-size: 1.3em;
    margin: 10px 0 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}


.btn-primary {
    background-color: var(--c-pink);
    color: #fff;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all .3s ease;
    display: inline-block;
    border: 2px solid var(--c-pink);
}

.btn-primary:hover {
    background-color: #fff;
    border-color: #fff;
    color: var(--c-pink);
    transform: scale(1.05);
}

.section {
    padding: 80px 0;
}

.section-alt {
    background-color: var(--c-lavender-bg);
}

.section-title {
    text-align: center;
    font-size: 2.8em;
    margin-bottom: 60px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: var(--c-pink);
    margin: 15px auto 0;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.category-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,.1);
    transition: transform .4s ease;
    display: block;
    color: #fff;
}

.category-card:hover {
    transform: translateY(-10px);
}

.category-card img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.category-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(0,0,0,.85), transparent);
}

.category-card h3 {
    color: #fff;
    font-size: 2em;
}

.contact-map iframe {
    border-radius: 15px;
}

.form-section {
    background: var(--c-lavender-bg);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-sizing: border-box;
}

.main-footer {
    background: var(--c-brown-dark);
    color: rgba(255,255,255,.8);
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.footer-grid h4 {
    color: var(--c-pink);
}

.footer-grid a {
    color: rgba(255,255,255,.8);
    text-decoration: none;
}

.footer-bottom {
    text-align: center;
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid var(--c-brown-light);
}

.about-grid,
.contact-grid {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-grid .about-content,
.about-grid .about-image-wrapper,
.contact-grid .contact-info,
.contact-grid .contact-map {
    flex: 1;
}

.about-image-wrapper {
    height: 450px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,.1);
}

.about-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 992px) {
    .about-grid,
    .contact-grid {
        flex-direction: column;
        text-align: center;
    }
    
    .about-content {
        order: 1;
    }
    
    .about-image-wrapper {
        order: 2;
        height: 300px;
        width: 100%;
    }
    
    .about-content h2 {
        text-align: center !important;
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 20px 0;
        box-shadow: 0 5px 10px rgba(0,0,0,.1);
    }
    
    .main-nav.active {
        display: flex;
    }
    
    .main-nav a {
        margin: 10px 0;
        width: 100%;
        text-align: center;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .hero-title {
        font-size: 2.5em;
    }
    
    .section-title {
        font-size: 2.2em;
    }
}
/* === E-COMMERCE STYLE FOR INNER PAGES === */

.page-header {
    padding: 60px 0;
    text-align: center;
    background-color: var(--c-lavender-bg);
    border-bottom: 1px solid #e0e0e0;
}
.page-header h1 {
    font-size: 3em;
    margin: 0;
}

.items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.item-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.07);
    display: flex;
    flex-direction: column;
    height: 100%;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s ease-out forwards;
    transition: transform 0.3s, box-shadow 0.3s;
}
.item-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.item-card-image-container {
    cursor: pointer;
    overflow: hidden;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    position: relative;
    padding-top: 100%; /* Creates a square aspect ratio */
}

.item-card-image-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Crops image to fit the square container */
    transition: transform 0.4s ease;
}

.item-card:hover .item-card-image-container img {
    transform: scale(1.1);
}

.item-card-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    text-align: center;
}
.item-card h3 {
    margin-top: 0;
    font-size: 1.2em;
    height: 40px;
    overflow: hidden;
}
.description {
    color: #777;
    font-size: 0.9em;
    flex-grow: 1;
    margin-bottom: 15px;
    height: 50px;
    overflow: hidden;
}
.price-container {
    margin: 10px 0;
    height: 30px;
}
.mrp-price {
    text-decoration: line-through;
    color: #999;
    font-size: 0.9em;
    margin-right: 8px;
}
.offer-price {
    font-size: 1.3em;
    font-weight: bold;
    color: var(--c-pink-dark);
}
.buy-button {
    background-color: var(--c-pink);
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    text-align: center;
    display: inline-block;
    margin-top: auto;
}
.modal-zoom {
    display: none;
    position: fixed;
    z-index: 2000;
    padding: 20px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.9);
}
.modal-zoom-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 90vh;
}
.close-zoom {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: 700;
    cursor: pointer;
}

@media (max-width: 576px) {
    .items-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    .item-card h3 { font-size: 1em; }
    .item-card-content { padding: 15px; }
}
/* === NEW STYLES FOR INFO & CONTACT SECTIONS === */
.info-section {
    padding: 80px 0;
}
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    text-align: center;
}
.info-box {
    padding: 20px;
}
.info-box .icon {
    font-size: 3em;
    color: var(--c-pink);
    margin-bottom: 20px;
}
.info-box h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
}

/* Updated Contact Section */
.contact-info p {
    font-size: 1.1em;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}
.contact-info p i {
    font-size: 1.2em;
    color: var(--c-pink);
}
.social-media {
    margin-top: 20px;
}
.social-media a {
    color: var(--c-brown-dark);
    font-size: 1.8em;
    margin-right: 20px;
    transition: color 0.3s, transform 0.3s;
}
.social-media a:hover {
    color: var(--c-pink);
    transform: scale(1.2);
}

/* For clickable phone numbers */
.phone-links a {
    margin-left: 10px;
    text-decoration: none;
    color: var(--c-pink);
    font-weight: bold;
}