/* ====================== GENERAL ====================== */
body {
    font-family: 'Segoe UI', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #f9fafb;
    color: #333;
}

h1, h2, h3 {
    margin: 0 0 10px;
}

/* ====================== HEADER ====================== */
.header {
    background: #fff;
    padding: 20px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo-img {
    max-height: 70px;
    width: auto;
    margin-bottom: 15px;
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-menu a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
}

.nav-menu a:hover {
    color: #D4AF37;
}


/* ====================== CATEGORY / COLLECTION GRID ====================== */
.collections-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.collections-section h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 28px;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.category-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    text-align: center;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 20px rgba(0,0,0,0.12);
}

.category-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.category-info {
    padding: 15px;
}

.category-info h3 {
    margin: 8px 0;
    font-size: 16px;
    color: #222;
}

.category-info .size {
    color: #666;
    font-size: 14px;
}

/* ====================== PRODUCT GRID ====================== */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s;
    text-align: center;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 20px rgba(0,0,0,0.12);
}

.product-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.product-info {
    padding: 16px;
}

.product-info h3 {
    margin: 8px 0;
    font-size: 16px;
}

.product-info p {
    color: #D4AF37;
    font-weight: 600;
}

/* ====================== BUTTONS ====================== */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-primary {
    background: #D4AF37;
    color: #0f172a;
}

.btn-primary:hover {
    background: #c49c2e;
}


/* Banner - Full Responsive (No Fixed Size) */
.top-banner {
    position: relative;
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.banner-img {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    display: block;
    margin: 0;
    padding: 0;
}

/* Banner Text - Now Below the Image */
.banner-text {
    position: static;                 /* Changed from absolute */
    transform: none;                  /* Remove centering transform */
    text-align: center;
    color: #222;                      /* Dark color for better readability */
    text-shadow: none;
    width: 100%;
    padding: 30px 20px;
    background: #fff;
}

.banner-text h1 {
    font-size: 36px;
    margin-bottom: 10px;
    color: #111;
}

.banner-text p {
    font-size: 18px;
    color: #555;
}

/* Mobile */
@media (max-width: 768px) {
    .banner-text h1 {
        font-size: 26px;
    }
    .banner-text p {
        font-size: 15px;
    }
}

/* Header Full Black */
.header {
    background: #000000 !important;
    color: white;
}

.header .nav-menu a {
    color: white !important;
}

.header .nav-menu a:hover {
    color: #D4AF37 !important;
}

/* ===== Fixed size beige image boxes ===== */
.product-card .product-image {
    width: 100%;
    aspect-ratio: 1 / 1;          /* perfect square */
    background-color: #F5F0E6;    /* soft beige */
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    box-sizing: border-box;
}

.product-card .product-image img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;          /* image fits inside without cropping */
    display: block;
}

/* Price styling */
.product-card .price {
    margin: 6px 0 0;
    font-size: 16px;
}

.product-card .price-old {
    text-decoration: line-through;
    color: #999;
    font-size: 14px;
    margin-right: 8px;
}

.product-card .price-new {
    color: #D4AF37;               /* gold */
    font-weight: 700;
    font-size: 17px;
}

/* ===== Category cards – fixed beige square images ===== */
.category-card .category-image {
    width: 100%;
    aspect-ratio: 1 / 1;              /* perfect square */
    background-color: #F5F0E6;        /* soft beige */
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    box-sizing: border-box;
    margin-bottom: 15px;
}

.category-card .category-image img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;              /* image fits without cropping */
    display: block;
}