
body {
    background-color: #f5f5f5;
    font-family: 'Segoe UI';
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    padding-top: 0;
}

/* NAVBAR */

.navbar,
.custom-navbar {
    background-color: rgba(0,0,0,0.95) !important;
    padding: 18px 0;
    z-index: 1000;
}

    .navbar-brand,
    .nav-link,
    .custom-navbar .navbar-brand,
    .custom-navbar .nav-link {
        color: white !important;
    }

    .custom-navbar .navbar-brand {
        font-size: 32px;
        font-weight: bold;
        letter-spacing: 1px;
    }

    .custom-navbar .nav-link {
        font-size: 18px;
        margin-left: 20px;
        transition: 0.3s;
    }

        .custom-navbar .nav-link:hover {
            color: #c19a6b !important;
        }

/* HERO SECTION */

.hero-section {
    width: 100%;
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,.6), rgba(0,0,0,.6)), url('/images/banner.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-content {
    text-align: center;
    color: white;
    animation: fadeIn 1.2s ease;
}

    .hero-content h1 {
        font-size: 90px;
        font-weight: bold;
        letter-spacing: 2px;
        margin-bottom: 20px;
    }

    .hero-content p {
        font-size: 28px;
        margin-bottom: 30px;
        color: #f1f1f1;
    }

/* BUTTONS */

.shop-btn,
.btn-dark,
.btn-warning {
    background-color: #c19a6b !important;
    border: none !important;
    color: white !important;
    padding: 12px 28px;
    border-radius: 30px;
    transition: 0.3s;
    font-weight: 600;
}

    .shop-btn:hover,
    .btn-dark:hover,
    .btn-warning:hover {
        background-color: black !important;
        color: white !important;
        transform: scale(1.05);
    }

/* HEADINGS */

h1,
h2,
h3 {
    font-weight: bold;
    color: #8B5E3C;
}

h1 {
    text-align: center;
    margin-bottom: 30px;
}

h2 {
    font-size: 42px;
    margin-bottom: 40px;
}

/* CARDS */

.card {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    transition: 0.4s;
    background-color: white;
    height: 100%;
}

    .card:hover {
        transform: translateY(-12px);
        box-shadow: 0px 12px 35px rgba(0,0,0,0.15);
    }

    .card img {
        width: 100%;
        height: 320px;
        object-fit: cover;
        transition: 0.5s;
    }

    .card:hover img {
        transform: scale(1.05);
    }

.card-body {
    padding: 25px;
    text-align: center;
}

    .card-body h5 {
        font-weight: bold;
        margin-bottom: 12px;
        font-size: 24px;
    }

    .card-body p {
        font-size: 17px;
        color: #555;
    }

    /* CARD BUTTONS */

    .card-body .btn {
        display: inline-block;
        margin: 5px;
        border-radius: 30px !important;
    }

/* CATEGORY SECTION */

.category-card {
    background-color: white;
    padding: 60px 30px;
    border-radius: 20px;
    transition: 0.4s;
    cursor: pointer;
}

    .category-card:hover {
        background-color: black;
        color: white;
        transform: translateY(-10px);
        box-shadow: 0px 10px 30px rgba(0,0,0,0.2);
    }

    .category-card i {
        color: #c19a6b;
    }

    .category-card:hover i {
        color: white;
    }

/* TABLE */

.table {
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
}

th {
    background-color: #8B5E3C !important;
    color: white;
}

td {
    vertical-align: middle;
}

/* FOOTER */

footer {
    background-color: black;
    color: white;
    padding: 20px;
    text-align: center;
    margin-top: 60px;
}

/* ANIMATION */

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* RESPONSIVE */

@media(max-width:768px) {

    .hero-content h1 {
        font-size: 50px;
    }

    .hero-content p {
        font-size: 20px;
    }

    h2 {
        font-size: 32px;
    }

    .category-card {
        padding: 40px 20px;
    }
}

/* PRODUCT DETAILS PAGE */

.product-details-box {
    background: white;
    padding: 50px;
    border-radius: 25px;
    box-shadow: 0px 10px 40px rgba(0,0,0,0.08);
}

.product-image-box {
    overflow: hidden;
    border-radius: 20px;
}

.product-image {
    width: 100%;
    height: 550px;
    object-fit: cover;
    transition: 0.5s;
    border-radius: 20px;
}

    .product-image:hover {
        transform: scale(1.05);
    }

.product-tag {
    background-color: #c19a6b;
    color: white;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 14px;
    letter-spacing: 1px;
}

.product-title {
    font-size: 55px;
    font-weight: bold;
    color: #111;
}

.product-price {
    color: #c19a6b;
    font-size: 38px;
    font-weight: bold;
}

.product-description {
    color: #555;
    font-size: 18px;
    line-height: 1.8;
}

/* CART PAGE */

.luxury-cart-table {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0px 10px 35px rgba(0,0,0,0.08);
}

    .luxury-cart-table thead {
        background-color: black;
        color: white;
    }

    .luxury-cart-table th,
    .luxury-cart-table td {
        padding: 20px;
        vertical-align: middle;
    }

.cart-image {
    width: 110px;
    height: 110px;
    object-fit: cover;
    border-radius: 15px;
}

.quantity-btn {
    background-color: #c19a6b !important;
    color: white !important;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    border: none;
    font-weight: bold;
}

    .quantity-btn:hover {
        background-color: black !important;
    }

.cart-summary {
    background: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0px 10px 35px rgba(0,0,0,0.08);
}

.text-gold {
    color: #c19a6b;
}

.empty-cart {
    background: white;
    padding: 80px 30px;
    border-radius: 25px;
    box-shadow: 0px 10px 35px rgba(0,0,0,0.08);
}

    .empty-cart i {
        color: #c19a6b;
    }

/* CHECKOUT PAGE */

.checkout-box {
    background: white;
    padding: 50px;
    border-radius: 25px;
    max-width: 700px;
    box-shadow: 0px 10px 40px rgba(0,0,0,0.08);
}

.checkout-input {
    border-radius: 15px;
    padding: 14px;
    border: 1px solid #ddd;
    box-shadow: none !important;
}

    .checkout-input:focus {
        border-color: #c19a6b;
    }

.form-label {
    font-weight: 600;
    margin-bottom: 10px;
}

/* ORDER SUCCESS PAGE */

.success-box {
    background: white;
    padding: 80px 40px;
    border-radius: 25px;
    max-width: 700px;
    box-shadow: 0px 10px 40px rgba(0,0,0,0.08);
}

.success-icon {
    font-size: 90px;
    color: #c19a6b;
}

.success-box h1 {
    font-weight: bold;
    color: #111;
}

.success-box p {
    font-size: 18px;
    color: #666;
    line-height: 1.8;
}

/* LOGIN PAGE */

.login-page {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #0f0f0f, #2b1f1a);
}

.login-card {
    width: 380px;
    padding: 35px;
    background: rgba(17, 17, 17, 0.95);
    border-radius: 18px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.8);
    color: #f5f5f5;
    border: 1px solid rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(8px);
}

.login-title {
    text-align: center;
    margin-bottom: 28px;
    color: #c8a24a;
    font-weight: 700;
    letter-spacing: 1px;
}

.login-input {
    background: #1e1e1e;
    border: 1px solid #333;
    color: #fff;
    border-radius: 8px;
    padding: 10px;
    transition: 0.3s;
}

    .login-input:focus {
        border-color: #c8a24a;
        box-shadow: 0 0 8px rgba(200, 162, 74, 0.4);
        background: #1a1a1a;
    }

.login-btn {
    background: linear-gradient(135deg, #c8a24a, #a8842f);
    color: #111;
    font-weight: 600;
    border: none;
    padding: 10px;
    border-radius: 8px;
    transition: 0.3s;
}

    .login-btn:hover {
        background: linear-gradient(135deg, #a8842f, #8c6f25);
        transform: translateY(-2px);
    }

/* FOOTER FIX */

html,
body {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}
/* FIX FOR NAVBAR OVERLAP */

.hero-section {
    margin-top: -130px;
}

.login-page,
.container,
.row {
    margin-top: 20px;
}

.cart-summary,
.luxury-cart-table,
.login-card {
    margin-top: 20px;
}
/* PAGE SPACING FIX */

main {
    padding-top: 120px;
}