﻿
* {
    box-sizing: border-box;
}

html {
    height: 100%;
    scroll-behavior: smooth;
}

#collections {
    display: block;
    scroll-margin-top: 140px;
}

body {
    background-color: #fff5f7;
    font-family: 'Segoe UI', sans-serif;
    padding-top: 0;
    padding-bottom: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

img {
    max-width: 100%;
    height: auto;
}


/* Navbar */

.navbar {
    background: #fff5f7;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.logo {
    height: 100px;
    width: auto;
    display: block;
}

.navbar-nav .nav-link {
    margin-left: 10px;
    padding: 8px 18px;
    border-radius: 25px;
    transition: background-color .3s, color .3s;
}

    .navbar-nav .nav-link:hover {
        background: #d63384;
        color: #fff !important;
    }

/* Main Content */

.body-content {
    flex: 1;
}

/* Section Titles */

.section-title {
    text-align: center;
    margin: 60px 0 30px;
    color: #d63384;
    font-weight: 700;
}

/* Footer */

footer {
    background: #f8d7e3;
    color: #444;
    text-align: center;
    padding: 20px;
    margin-top: 60px;
    border-top: 1px solid rgba(0,0,0,0.05);
}

/* Mobile */

@media (max-width: 768px) {

    #collections {
        padding-left: 20px;
        padding-right: 20px;
    }

    .logo {
        height: 60px;
    }

    .navbar-nav .nav-link {
        margin: 5px 0;
    }

    .section-title {
        margin: 40px 0 20px;
    }
}

.collection-card {
    overflow: hidden;
    transition: transform .3s ease, box-shadow .3s ease;
}

    .collection-card img {
        width: 100%;
        height: 320px;
        object-fit: cover;
        object-position: top center;
        transition: transform .3s ease;
    }

    .collection-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 25px rgba(0,0,0,.18);
    }

        .collection-card:hover img {
            transform: scale(1.03);
        }

.category-btn {
    border: 1px solid #6B2137;
    background-color: #fff;
    color: #6B2137;
    border-radius: 25px;
    padding: 8px 22px;
    font-weight: 500;
    transition: all .25s ease;
}

    .category-btn:hover,
    .collection-buttons .category-btn:hover {
        background-color: #6B2137 !important;
        border-color: #6B2137 !important;
        color: #fff !important;
        transform: translateY(-2px);
        opacity: 1 !important;
    }

    .category-btn.active,
    .collection-buttons .category-btn.active {
        background-color: #6B2137 !important;
        border-color: #6B2137 !important;
        color: #fff !important;
        opacity: 1 !important;
    }

/* PRIMARY BUTTON */

.princella-btn,
.princella-btn:focus,
.princella-btn:active {
    display: inline-block;
    background: #d63384 !important;
    border: 1px solid #d63384 !important;
    color: #fff !important;
    border-radius: 30px;
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: .25s ease;
    box-shadow: 0 4px 12px rgba(214,51,132,.18);
}

    .princella-btn:hover {
        background: #b0256c !important;
        border-color: #b0256c !important;
        color: #fff !important;
        text-decoration: none;
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(214,51,132,.28);
    }

    .princella-btn:active {
        transform: translateY(0);
        box-shadow: 0 3px 8px rgba(214,51,132,.20);
    }


/* SECONDARY BUTTON */

.princella-btn-outline,
.princella-btn-outline:focus,
.princella-btn-outline:active {
    display: inline-block;
    background: #fff !important;
    border: 1px solid #d63384 !important;
    color: #d63384 !important;
    border-radius: 30px;
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: .25s ease;
}

    .princella-btn-outline:hover {
        background: #d63384 !important;
        border-color: #d63384 !important;
        color: #fff !important;
        text-decoration: none;
        transform: translateY(-2px);
    }

.princella-link {
    color: #d63384;
    text-decoration: none !important;
}

    .princella-link:hover {
        text-decoration: underline !important;
        color: #d63384;
    }

.account-icon {
    background: transparent !important;
    border-radius: 0 !important;
}

    .account-icon:hover {
        background: transparent !important;
        color: inherit !important;
    }

.navbar-nav .account-icon:hover {
    background-color: transparent !important;
    color: inherit !important;
}

.dropdown-menu {
    border: 1px solid rgba(214, 51, 132, 0.3) !important;
    box-shadow: 0 5px 20px rgba(214, 51, 132, 0.15) !important;
}

    /* Dropdown menu hover theme */
    .dropdown-menu .dropdown-item:hover {
        background-color: #fff5f7;
        color: #d63384 !important;
    }

        .dropdown-menu .dropdown-item:hover i {
            color: #d63384;
        }

    /* Keep logout red on hover */
    .dropdown-menu .dropdown-item.text-danger:hover {
        background-color: #fff5f7;
        color: #dc3545 !important;
    }

        .dropdown-menu .dropdown-item.text-danger:hover i {
            color: #dc3545;
        }

/* Account icon hover - scale up effect */
.account-icon i {
    transition: all 0.3s ease;
}

.account-icon:hover i {
    color: #b0256c !important;
    transform: scale(1.2);
    filter: none;
}

.form-label {
    font-weight: 600;
    color: #444;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.form-control[readonly] {
    background-color: #f5f5f5;
    color: #888;
    cursor: not-allowed;
}

.Cardheader {
    text-align: center;
    color: #d63384;
    font-weight: 700;
    margin-bottom: 30px;
}

.cart-btn:disabled {
    background: #6B2137 !important;
    color: #fff !important;
    opacity: 0.6;
    cursor: not-allowed;
}


.cart-product-img {
    width: 80px;
    height: 100px;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid #ead4db;
}
