:root {
    --primary-color: #be185d;
    /* Pink-700 */
    --primary-light: #fdf2f8;
    --secondary-color: #b45309;
    /* Amber-700 */
    --accent-color: #f8f1f1;
    --text-dark: #0f172a;
    /* Slate-900 */
    --text-muted: #64748b;
    /* Slate-500 */
    --text-light: #ffffff;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-soft: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.02);
    --glass: rgba(255, 255, 255, 0.8);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', 'Hind Siliguri', sans-serif;
}

body {
    background-color: #ffffff;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Glassmorphism */
.glass {
    background: var(--glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.bg-blur {
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade {
    animation: fadeIn 1s ease-out forwards;
}

/* Header & Nav */
header {
    background: transparent;
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    width: 100%;
    z-index: 1000;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 1px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav ul li a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: var(--primary-color);
}

.cart-icon {
    position: relative;
    cursor: pointer;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: var(--primary-color);
    color: white;
    font-size: 0.7rem;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 10%;
    background: linear-gradient(135deg, #fffaf5 0%, #ffeef2 100%);
    position: relative;
}

.hero-content {
    flex: 1;
    z-index: 2;
}

.hero-tag {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
    letter-spacing: 2px;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.hero-highlight {
    color: var(--primary-color);
    position: relative;
}

/* .hero-highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 10px;
    background-color: rgba(212, 175, 55, 0.3);
    z-index: -1;
} */

.hero p {
    margin-bottom: 30px;
    color: #555;
    max-width: 500px;
}

.cta-button {
    padding: 15px 40px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 10px 20px rgba(128, 0, 32, 0.3);
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(128, 0, 32, 0.4);
}

.hero-image {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-img-bg {
    position: absolute;
    width: 400px;
    height: 400px;
    background-color: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    z-index: 1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.main-img {
    position: relative;
    z-index: 2;
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transform: rotate(-3deg);
    transition: transform 0.5s;
}

.main-img:hover {
    transform: rotate(0deg) scale(1.02);
}

/* Categories */
.categories {
    padding: 80px 10%;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
}

/* .section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: var(--primary-color);
    margin: 10px auto 0;
    border-radius: 2px;
} */

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.category-card {
    position: relative;
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow);
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.category-card:hover img {
    transform: scale(1.1);
}

.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    color: white;
    text-align: left;
}

/* Hero Redesign Styles */
.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 85vh;
    position: relative;
}

.decorative-wave {
    width: 200px;
    height: 100px;
    margin-top: 20px;
    background: linear-gradient(90deg, #f8d8d8, #d8f8e1, #d8e5f8);
    filter: blur(30px);
    border-radius: 50% 0 50% 0;
    opacity: 0.6;
    position: absolute;
    z-index: -1;
}

.hero-graphics {
    position: relative;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-box {
    position: absolute;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-box:hover {
    transform: translateY(-10px);
    z-index: 10 !important;
}

/* Specific Box Positioning for Grid/Overlay Effect */
.box-1 {
    width: 200px;
    height: 250px;
    left: 0;
    top: 150px;
    z-index: 1;
}

.box-2 {
    width: 300px;
    height: 380px;
    left: 140px;
    top: 20px;
    z-index: 2;
    border: 5px solid #fff;
    background: #fdfdfd;
}

.box-3 {
    width: 240px;
    height: 180px;
    right: 0px;
    bottom: 80px;
    z-index: 3;
    border: 5px solid #fff;
}

.shape {
    position: absolute;
    border-radius: 50%;
    z-index: 0;
}

.circle-1 {
    width: 250px;
    height: 250px;
    background: #e0f2f1;
    top: 10%;
    right: 20%;
    opacity: 0.5;
    filter: blur(40px);
}

.circle-2 {
    width: 150px;
    height: 150px;
    background: #e3f2fd;
    bottom: 10%;
    right: 5%;
    opacity: 0.5;
    filter: blur(30px);
}

@media (max-width: 1024px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-graphics {
        width: 100%;
        max-width: 500px;
        margin-top: 50px;
        transform: scale(0.8);
    }

    .box-1 {
        left: -20px;
    }

    .box-3 {
        right: -20px;
    }
}