:root {
    --primary-pink: #ff3385;
    /* Hot Pink */
    --light-pink: #ffe6f0;
    /* Light Pink Background */
    --text-black: #1a1a1a;
    --text-gray: #666;
    --white: #ffffff;
}

body {
    font-family: 'Jost', sans-serif;
    color: var(--text-black);
    overflow-x: hidden;
    background-color: var(--white);
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Bodoni Moda', serif;
    font-weight: 700;
}

/* Utility Classes */
.text-pink {
    color: var(--primary-pink) !important;
}

.bg-pink {
    background-color: var(--primary-pink) !important;
    color: white;
}

.bg-light-pink {
    background-color: var(--light-pink) !important;
}

.section-padding {
    padding: 90px 0;
}

/* Buttons */
.btn-fashion {
    background-color: var(--text-black);
    color: white;
    padding: 15px 40px;
    font-family: 'Jost', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid var(--text-black);
    transition: all 0.3s ease;
    border-radius: 0;
}

.btn-fashion:hover {
    background-color: var(--primary-pink);
    border-color: var(--primary-pink);
    color: white;
}

.btn-outline-fashion {
    background: transparent;
    color: var(--text-black);
    border: 1px solid var(--text-black);
    padding: 10px 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
    border-radius: 0;
    transition: 0.3s;
}

.btn-outline-fashion:hover {
    background: var(--text-black);
    color: white;
}

/* Navbar */
.navbar {
    background-color: white;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

.navbar-brand {
    font-family: 'Bodoni Moda', serif;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -1px;
    color: var(--text-black) !important;
}

.navbar-brand span {
    color: var(--primary-pink);
}

.nav-link {
    color: var(--text-black) !important;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    margin: 0 10px;
    position: relative;
}

.nav-link::after {
    content: '';
    display: block;
    width: 0;
    height: 1px;
    background: var(--primary-pink);
    transition: width 0.3s;
    margin-top: 5px;
}

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

/* Icon Links in Nav */
.nav-icon-link {
    color: var(--text-black);
    font-size: 1.2rem;
    margin-left: 15px;
    transition: 0.3s;
}

.nav-icon-link:hover {
    color: var(--primary-pink);
}

.badge-cart {
    background-color: var(--primary-pink);
    font-size: 0.6rem;
    position: absolute;
    top: -5px;
    right: -8px;
}

/* Hero Slider */
.carousel-item {
    height: 90vh;
    min-height: 500px;
    background: no-repeat center center scroll;
    background-size: cover;
}

.hero-caption {
    background: rgba(255, 255, 255, 0.9);
    padding: 50px;
    display: inline-block;
    max-width: 600px;
    text-align: left;
    animation: fadeInUp 1s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Category Grid */
.cat-item {
    position: relative;
    overflow: hidden;
    height: 400px;
    margin-bottom: 30px;
}

.cat-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.cat-item:hover .cat-img {
    transform: scale(1.1);
}

.cat-overlay {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: white;
    padding: 15px 30px;
    z-index: 2;
}

.cat-overlay h4 {
    margin: 0;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Product Cards */
.product-card {
    border: none;
    transition: 0.3s;
    position: relative;
}

.product-img-wrap {
    position: relative;
    overflow: hidden;
    height: 400px;
    background: #f9f9f9;
}

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

.product-actions {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    background: rgba(255, 255, 255, 0.95);
    padding: 15px;
    transition: 0.3s;
}

.product-card:hover .product-actions {
    bottom: 0;
}

.product-action-btn {
    background: transparent;
    border: none;
    color: var(--text-black);
    margin: 0 10px;
    font-size: 1.2rem;
    transition: 0.3s;
}

.product-action-btn:hover {
    color: var(--primary-pink);
}

.sale-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--primary-pink);
    color: white;
    padding: 3px 10px;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Deal Section */
.deal-section {
    background-color: var(--light-pink);
    padding: 80px 0;
}

.countdown-item {
    display: inline-block;
    margin: 0 15px;
    text-align: center;
}

.countdown-number {
    font-size: 3rem;
    font-weight: 700;
    font-family: 'Bodoni Moda', serif;
    line-height: 1;
}

.countdown-label {
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 1px;
    margin-top: 5px;
}

/* Lookbook / Gallery */
.lookbook-img {
    width: 100%;
    height: auto;
    margin-bottom: 24px;
    transition: 0.3s;
    filter: grayscale(20%);
}

.lookbook-img:hover {
    filter: grayscale(0%);
    cursor: pointer;
}

/* Footer */
footer {
    background-color: #111;
    color: #888;
    padding: 80px 0 30px;
}

footer h5 {
    color: white;
    margin-bottom: 25px;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

footer a {
    color: #888;
    text-decoration: none;
    transition: 0.3s;
    font-size: 0.9rem;
}

footer a:hover {
    color: var(--primary-pink);
}

.social-link {
    font-size: 1.2rem;
    margin-right: 20px;
}