/* === BASE RESET === */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.brand-link {
    transition: opacity 0.3s ease;
}

.brand-link:hover {
    opacity: 0.8; /* Subtle fade effect on hover */
    cursor: pointer;
}

.brand-link h1 {
    font-size: 24px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -1px;
}



/* User Header Logout */
.btn-logout {
    background: transparent;
    border: 1px solid #333;
    color: #333;
    padding: 5px 12px;
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
    margin-left: 10px;
}

.btn-logout:hover {
    background-color: #ff0050; /* Dressrosa Pink */
    color: #fff;
    border-color: #ff0050;
}

body, html {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #ffffff;
    color: #333333;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

/* === HEADER NAVIGATION === */
.main-header {
    background-color: #000000;
    color: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
}

.brand-logo h1 {
    margin: 0;
    font-size: 18px;
    letter-spacing: 4px;
    font-weight: bold;
}

.brand-logo p {
    margin: 4px 0 0 0;
    font-size: 9px;
    letter-spacing: 6px;
    color: #dddddd;
}

.main-nav {
    display: flex;
    gap: 30px;
}

.main-nav a {
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 1px;
}

.main-nav a.active { color: #ffffff; }

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.icon-link {
    font-size: 18px;
    color: #ffffff;
}

.btn-signin {
    background-color: #ff004d;
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 13px;
    transition: background-color 0.2s;
}

.btn-signin:hover { background-color: #cc003d; }

/* === HERO BANNER === */
.hero-banner {
    width: 100%;
    height: 600px;
    background-color: #cccccc; /* Fallback */
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: center;
    padding-left: 10%; /* Matches offset in image */
}

.hero-content {
    color: #ffffff;
}

.hero-content h2 {
    font-size: 50px;
    font-weight: bold;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.hero-content p {
    font-size: 16px;
    letter-spacing: 1px;
    margin-bottom: 30px;
    font-weight: bold;
}

.btn-shop-now {
    border: 2px solid #ffffff;
    padding: 12px 30px;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 1px;
    transition: background-color 0.2s, color 0.2s;
}

.btn-shop-now:hover {
    background-color: #ffffff;
    color: #000000;
}

/* === NEW ARRIVALS GRID === */
.new-arrivals {
    padding: 60px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 28px;
    color: #333333;
    margin-bottom: 50px;
    letter-spacing: 2px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.product-card {
    display: flex;
    flex-direction: column;
}

.product-image-container {
    position: relative;
    width: 100%;
    aspect-ratio: 3/4; /* Standard fashion image ratio */
    background-color: #f5f5f5;
    overflow: hidden;
    margin-bottom: 15px;
}

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

/* Hover Overlay + Icon */
.image-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.product-image-container:hover .image-overlay {
    opacity: 1;
}

.circle-plus {
    font-size: 24px;
    color: white;
    border: 2px solid white;
    border-radius: 50%;
    padding: 15px;
}

.product-details {
    padding: 5px 0;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 5px;
}

.price-info {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 8px;
}

.current-price {
    font-size: 18px;
    font-weight: bold;
    color: #000000;
}

.original-price {
    font-size: 14px;
    color: #888888;
    text-decoration: line-through;
}

.tax-info {
    display: block;
    width: 100%;
    font-size: 8px;
    color: #888888;
}

.wishlist-icon {
    font-size: 18px;
    color: #888888;
    cursor: pointer;
}

.wishlist-icon:hover { color: #ff004d; }

.product-title {
    font-size: 12px;
    color: #555555;
    font-weight: normal;
    margin-bottom: 15px;
}

.product-actions {
    display: flex;
    gap: 10px;
}

.product-actions button {
    flex: 1;
    padding: 10px 0;
    font-size: 11px;
    font-weight: bold;
    background: transparent;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-add-cart {
    border: 1px solid #cccccc;
    color: #ff004d;
}

.btn-add-cart:hover { border-color: #ff004d; }

.btn-buy-now {
    border: 1px solid #cccccc;
    color: #ff004d;
}

.btn-buy-now:hover {
    background-color: #ff004d;
    color: #ffffff;
    border-color: #ff004d;
}

/* === SERVICES SECTION === */
.services-section {
    padding: 60px 40px;
    max-width: 1200px;
    margin: 0 auto;
    border-top: 1px solid #eeeeee;
}

.services-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
}

.services-header .line {
    height: 1px;
    width: 200px;
    background-color: #cccccc;
    border-top: 1px dashed #333; /* Matches the dashed look */
}

.services-header h3 {
    font-size: 16px;
    letter-spacing: 2px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.service-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 1px solid #333;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    margin-bottom: 20px;
    color: #333;
}

.service-item h4 {
    font-size: 11px;
    margin-bottom: 10px;
    font-weight: bold;
    text-transform: uppercase;
}

.service-item p {
    font-size: 10px;
    color: #555;
    line-height: 1.5;
}

/* === FOOTER === */
.main-footer {
    background-color: #000000;
    color: #ffffff;
    padding: 60px 60px 20px 60px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 40px;
    border-bottom: 1px solid #333333;
}

.footer-brand h2 {
    margin: 0;
    font-size: 18px;
    letter-spacing: 4px;
}

.footer-brand p {
    margin: 4px 0 0 0;
    font-size: 9px;
    letter-spacing: 6px;
    color: #aaaaaa;
}

.footer-links {
    display: flex;
    gap: 60px;
}

.footer-links ul, .footer-social ul {
    list-style: none;
}

.footer-links li, .footer-social li {
    margin-bottom: 15px;
}

.footer-links a, .footer-social a {
    font-size: 11px;
    color: #cccccc;
    transition: color 0.2s;
}

.footer-links a:hover, .footer-social a:hover { color: #ffffff; }

.footer-social h4 {
    font-size: 13px;
    margin-bottom: 15px;
}

.footer-social p {
    font-size: 11px;
    color: #cccccc;
    margin-bottom: 15px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    font-size: 10px;
    color: #888888;
    line-height: 1.6;
}