/* --- BRUKUTU CUSTOM LUXURY SYSTEM --- */
:root {
    --urban-black: #000000;
    --urban-white: #ffffff;
    --urban-red: #e10600;
    --urban-gray: #f2f2f2;
    --font-main: 'Roboto', sans-serif;
    --font-heading: 'Inter', sans-serif;
    --font-gothic: 'UnifrakturMaguntia', cursive;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

body {
    font-family: var(--font-main);
    background-color: #fff;
    color: var(--urban-black);
    font-size: 14px;
    letter-spacing: 0.5px;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .logo-text {
    font-family: var(--font-heading);
    font-weight: 900 !important;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

/* --- HEADER ROME STYLE --- */
.announcement-bar {
    background: #000;
    color: #fff;
    text-align: center;
    padding: 0;
    line-height: 40px;
    height: 40px;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    position: absolute; /* It will scroll away */
    top: 0;
    width: 100%;
    z-index: 3000;
}

.top-header {
    background-color: transparent;
    padding: 20px 0;
    position: fixed;
    top: 40px; /* Aligned exactly with announcement bar height */
    left: 0;
    width: 100%;
    z-index: 2500;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.top-header.header-scrolled {
    background-color: #000;
    top: 0;
    padding: 15px 0;
}

@media (max-width: 991px) {
    .top-header {
        top: 40px; /* Aligned exactly with announcement height */
        padding: 15px 0;
    }
}

.top-header .logo-text {
    font-size: 2rem !important;
    color: #fff !important;
    letter-spacing: 2px !important;
}

.top-header .action-item i {
    color: #fff !important;
    font-size: 1.2rem;
}

/* --- PRODUCT CARDS CLEAN --- */
.product-card-urban {
    border: none !important;
    background: transparent !important;
    transition: var(--transition);
}
.product-card-urban:hover { transform: translateY(-5px); }
.product-img-box {
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: #f9f9f9;
}
.product-img-box img { transition: 1.5s ease; }
.product-card-urban:hover img { transform: scale(1.1); }

/* --- BUTTONS --- */
.btn-luxury {
    background: #000;
    color: #fff;
    border-radius: 0;
    font-weight: 900;
    letter-spacing: 2px;
    padding: 15px 35px;
    border: 1px solid #000;
    transition: var(--transition);
}
.btn-luxury:hover {
    background: #fff;
    color: #000;
}

/* --- PERROLOCO CARDS SECTION --- */
.perroloco-cards-section {
    padding: 0 !important;
}

.pl-card {
    height: 85vh;
    min-height: 700px;
    cursor: pointer;
}

@media (max-width: 768px) {
    .pl-card { height: 60vh; min-height: 400px; }
}

.pl-img-zoom {
    transition: transform 1.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.pl-card:hover .pl-img-zoom {
    transform: scale(1.1);
}

.pl-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.pl-card:hover .pl-card-overlay {
    background: rgba(0,0,0,0.4);
}

.pl-text-center {
    text-align: center;
    z-index: 10;
}

.pl-text-center h2 {
    letter-spacing: -1px;
    text-shadow: 0 0 40px rgba(0,0,0,0.5);
}

/* --- CATEGORY PILLS --- */
.cat-minimal-pill {
    display: inline-block;
    padding: 12px 40px;
    border: 1px solid #eee;
    background: #fff;
    color: #000;
    font-weight: 900;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: var(--transition);
    border-radius: 0;
}
.cat-minimal-pill:hover {
    background: #000;
    color: #fff;
    border-color: #000;
}

.bg-light-urban { background-color: #f9f9f9; }

/* --- UTILS --- */
.tracking-widest { letter-spacing: 5px; }
.fw-black { font-weight: 900; }
.text-white-50 { color: rgba(255,255,255,0.5) !important; }
