:root {
    --text-dark: #111111;
    --text-grey: #666666;
    --accent-red: #CA1515;
    --white: #FFFFFF;
    --bg-light: #F8F9FA;
    --font-primary: 'Montserrat', sans-serif;
    --font-accent: 'Cookie', cursive;
}

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    -webkit-font-smoothing: antialiased;
    background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    color: var(--text-dark);
    font-weight: 600;
}

a {
    color: var(--text-dark);
    transition: all 0.3s;
}

a:hover {
    color: var(--accent-red);
    text-decoration: none;
}

/* Typography Hierarchy */
.brand-logo {
    font-family: var(--font-accent);
    font-size: 2.5rem;
    color: var(--text-dark) !important;
    font-weight: 400;
}

.section-title {
    font-weight: 600;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 2px;
    background: var(--accent-red);
}

/* Navbar */
.navbar-custom {
    background-color: var(--white);
    box-shadow: 0 5px 10px rgba(0,0,0,0.03);
    padding: 0 15px;
    height: 80px;
}

.navbar-nav .nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--text-dark) !important;
    padding: 10px 15px;
    letter-spacing: 1px;
}

.navbar-nav .nav-link:hover, .navbar-nav .nav-link.active {
    color: var(--accent-red) !important;
}

.cart-icon {
    font-size: 1.2rem;
    color: var(--text-dark);
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: var(--accent-red);
    color: white;
    font-size: 10px;
    padding: 2px 5px;
    border-radius: 50%;
}

/* Shop Header / Breadcrumb */
.breadcrumb-option {
    background: #f3f2ee;
    padding: 40px 0;
    margin-bottom: 40px;
}
.breadcrumb__text h4 {
    color: #111111;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.breadcrumb__links span {
    font-size: 15px;
    color: #b7b7b7;
    display: inline-block;
    margin-right: 10px;
}

/* Product Card */
.product-card {
    border: none;
    background: transparent;
    transition: all 0.3s;
    text-align: center;
    margin-bottom: 30px;
}

.product-card .image-container {
    position: relative;
    overflow: hidden;
    margin-bottom: 15px;
    background: #f0f0f0;
}

.product-card img {
    width: 100%;
    height: 360px; /* Taller aspect ratio for fashion */
    object-fit: cover;
    transition: transform 0.5s;
}

.product-card:hover img {
    transform: scale(1.05);
}

.product-title {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
}

.product-category {
    font-size: 0.8rem;
    color: var(--text-grey);
    margin-bottom: 5px;
    text-transform: uppercase;
}

/* Buttons */
.btn-custom {
    text-transform: uppercase;
    font-weight: 700;
    border-radius: 0;
    padding: 12px 30px;
    letter-spacing: 2px;
    transition: all 0.3s;
}

.btn-primary-custom {
    background-color: var(--accent-red);
    border: 1px solid var(--accent-red);
    color: var(--white);
}

.btn-primary-custom:hover {
    background-color: transparent;
    color: var(--accent-red);
}

.btn-link-custom {
    text-transform: uppercase;
    font-weight: 700;
    color: var(--text-dark);
    border-bottom: 2px solid var(--accent-red);
    text-decoration: none;
    padding-bottom: 2px;
    border-radius: 0;
    display: inline-block;
}

.btn-link-custom:hover {
    color: var(--text-dark);
    opacity: 0.8;
    text-decoration: none;
}

/* Category Tabs */
.category-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
}

.category-tab {
    margin: 0 15px 10px;
}

.category-tab a {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-grey);
    padding-bottom: 5px;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: all 0.3s;
    text-transform: uppercase;
}

.category-tab a.active, .category-tab a:hover {
    color: var(--text-dark);
    border-bottom-color: var(--accent-red);
}

/* Badges */
.badge-custom {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 5px 10px;
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: bold;
    color: white;
    border-radius: 0;
    z-index: 10;
}
.badge-new { background-color: #36A300; }
.badge-sale { background-color: var(--accent-red); }

/* Search Bar */
.search-container {
    margin-bottom: 40px;
    text-align: center;
}

.search-input {
    border: none;
    border-bottom: 1px solid #e1e1e1;
    border-radius: 0;
    padding: 10px;
    width: 100%;
    max-width: 400px;
    text-align: center;
    font-size: 1rem;
}

.search-input:focus {
    box-shadow: none;
    border-color: var(--accent-red);
}

/* Footer */
.footer {
    background: #111111;
    color: #ffffff;
    padding: 50px 0 20px;
    margin-top: 80px;
}
.footer p {
    color: #b7b7b7;
}

/* Pagination */
.pagination .page-link {
    border: none;
    color: var(--text-grey);
    font-weight: 600;
    margin: 0 5px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pagination .page-item.active .page-link {
    background-color: var(--text-dark);
    color: white;
}

