body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
}
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  body {
    font-family: 'Courier New', Courier, monospace; /* Changes your global font */
}
}

.navbar{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0; /* Slimmed down top/bottom padding to fix the huge white bar */
}

nav{
  flex: 1;
  text-align: right;
}

nav ul{
  display: inline-block;
  list-style-type: none;
}

nav ul li{
  display: inline-block;
  margin-right: 20px;
}

a{
  text-decoration: none;
  color: #555;
  font-size: 18px;
}

p{
  color: #555;
  font-size: 18px;
}

.container{
  max-width: 1300px;
  margin: auto;
  padding-left: 25px;
  padding-right: 25px;
}

.hero-banner{
    width:100%;
    height:100vh;
}

.hero-banner img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

/* Container for the whole section */
.collection-section {
    background-color: #000000;
    color: #ffffff;
    padding: 60px 40px;
    font-family: sans-serif;
}

/* Header styling */
.collection-header {
    margin-bottom: 50px;
    max-width: 1000px;
}

.collection-header h2 {
    font-size: 24px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.collection-header p {
    font-size: 14px;
    line-height: 1.6;
    color: #cccccc;
}

/* The Magic 3-Column Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

/* Individual Product Card Styling */
.product-card {
    text-align: center;
    position: relative;
}

.product-card img {
    width: 100%;
    max-width: 350px;
    height: auto;
    margin-bottom: 20px;
}

.product-card h3 {
    font-size: 16px;
    margin: 10px 0 5px;
}

.product-card p {
    font-size: 14px;
    color: #aaaaaa;
}

/* Sold Out Badge Styling */
.badge {
    position: absolute;
    top: 15px; /* Pushes it down from the top edge */
    left: 15px; /* Pushes it away from the left edge */
    z-index: 10; /* Ensures the badge always stays on top of the images */
    background-color: #ff3b30;
    color: #ffffff;
    border: none;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
}

/* Logo Styling */
.logo img {
    width: 100px; /* Adjust this value if you want it slightly bigger or smaller */
    height: auto;
    display: block;
}
/* Sets the entire header background to black */
header {
    background-color: #000000;
}

/* Slims down the vertical thickness and aligns items */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0; /* Reduced top and bottom padding to make it thin */
}

/* Changes the nav text color so it remains visible against the black background */
nav ul li a {
  color: #ffffff; /* Turns the links white */
  text-decoration: none;
  font-size: 16px;
}

/* Optional: If your logo is dark, you can invert it or use a white version. 
   If it's already visible on black, leave it as is. */
.logo img {
    width: 90px; /* Adjust size if needed */
    height: auto;
    display: block;
}
/* Container that holds both images */
.image-container {
    position: relative;
    width: 100%;
    max-width: 350px;
    margin: 0 auto 20px auto;
}

/* Default image styling */
.image-container img {
    width: 100%;
    height: auto;
    display: block;
    transition: opacity 0.3s ease; /* Creates a smooth fade effect */
}

/* The second image sits directly on top of the first one */
.image-container .hover-img {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0; /* Completely hidden by default */
}

/* THE MAGIC: When you hover over the card, hide the first image and show the second */
.product-card:hover .primary-img {
    opacity: 0;
}

.product-card:hover .hover-img {
    opacity: 1; /* Fades in the second angle */
}

/* Main Section Container */
.featured-collections {
    padding: 60px 40px;
    background-color: #ffffff; /* Change to #000000 if you want a black background */
    color: #000000; /* Change to #ffffff if background is black */
    font-family: sans-serif;
}

/* Section Title */
.featured-collections h2 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

/* 3-Column Layout Grid */
.collection-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Individual Collection Card */
.collection-item {
    text-align: left; /* Align text to the left like the reference image */
}

/* Collection Images */
.collection-item img {
    width: 100%;
    height: 400px; /* Adjust height to make them tall like your reference */
    object-fit: cover; /* Prevents image stretching */
    margin-bottom: 15px;
}

/* Collection Titles */
.collection-item h3 {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 600;
}

/* 'Shop Now' Outline Button */
.shop-btn {
    display: inline-block;
    padding: 10px 25px;
    border: 1px solid #000000; /* Change to #ffffff if background is black */
    color: #000000; /* Change to #ffffff if background is black */
    text-decoration: none;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

/* Button Hover Effect */
.shop-btn:hover {
    background-color: #000000; /* Change to #ffffff on hover */
    color: #ffffff; /* Change to #000000 on hover */
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .collection-grid {
        grid-template-columns: 1fr; /* Stacks columns on mobile phones */
    }
}

/* Section Container */
.new-arrivals-section {
    padding: 60px 40px;
    background-color: #ffffff; /* Change to #000000 if your site is dark-themed */
    color: #000000; /* Change to #ffffff if background is black */
    font-family: sans-serif;
}

/* Header layout (Title on left, View All on right) */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.section-header h2 {
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 1px;
    margin: 0;
}

.view-all-link {
    font-size: 14px;
    color: #000000; /* Change to #ffffff if background is black */
    text-decoration: none;
    font-weight: 500;
}

.view-all-link:hover {
    text-decoration: underline;
}

/* The Magic 4-Column Grid */
.arrivals-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Creates 4 equal columns */
    gap: 30px; /* Space between the items */
}

/* Product Card Details */
.arrivals-grid .product-card {
    text-align: left; /* Align text to the left */
}

.arrivals-grid .product-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
    margin-bottom: 15px;
}

/* Small brand label above the title */
.brand-name {
    font-size: 11px;
    color: #777777;
    margin-bottom: 5px;
    letter-spacing: 0.5px;
}

/* Product Name */
.arrivals-grid .product-card h3 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.4;
}

/* Price */
.arrivals-grid .product-card .price {
    font-size: 14px;
    font-weight: bold;
    color: #000000; /* Change to #ffffff if background is black */
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .arrivals-grid {
        grid-template-columns: repeat(2, 1fr); /* Drops to 2 columns on tablets */
    }
}

@media (max-width: 600px) {
    .arrivals-grid {
        grid-template-columns: 1fr; /* Drops to 1 column on phones */
    }
}

/* Container for the ticker bar */
/* Announcement Bar */
.announcement-bar{
    width:100%;
    background:#000;
    color:#fff;
    overflow:hidden;
    white-space:nowrap;
    padding:10px 0;
    font-size:12px;
    font-weight:600;
    letter-spacing:1px;
}

/* Moving container */
.marquee{
    display:flex;
    width:max-content;
    animation: marquee 18s linear infinite;
}

/* Each duplicated group */
.marquee-group{
    display:flex;
    align-items:center;
    flex-shrink:0;
}

.marquee-group span{
    display:inline-block;
    padding-right:60px;
}

@keyframes marquee{
    from{
        transform:translateX(0);
    }
    to{
        transform:translateX(-50%);
    }
}

/* Footer Main Container */
.site-footer {
    background-color: #000000;
    color: #ffffff;
    padding: 60px 40px 30px 40px;
    font-family: sans-serif;
    border-top: 1px solid #222222; /* Subtle top border line */
}

/* Top Section: Links and Socials Flexbox */
.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 50px;
}

/* Footer Navigation Links */
.footer-links {
    list-style: none;
    display: flex;
    gap: 30px;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
}

.footer-links li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 1px;
    transition: opacity 0.3s ease;
}

.footer-links li a:hover {
    opacity: 0.6;
}

/* Social Media Icons */
.footer-socials {
    display: flex;
    gap: 20px;
}

.footer-socials a {
    color: #ffffff;
    transition: opacity 0.3s ease;
}

.footer-socials a:hover {
    opacity: 0.6;
}

/* Bottom Copyright Section */
.footer-bottom {
    text-align: center;
    border-top: 1px solid #1a1a1a;
    padding-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-bottom p {
    font-size: 11px;
    color: #888888;
    letter-spacing: 1px;
    margin: 0;
}

body {
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase; /* Makes all text uppercase like the image */
    letter-spacing: 1px; /* Adds clean spacing between letters */
}

.sale-link {
    color: #ff3b30 !important; /* Makes the sale text pop in red */
    font-weight: bold;
}

.catalog-section {
    padding: 60px 40px;
    background-color: #000000;
    color: #ffffff;
}

.catalog-header {
    margin-bottom: 40px;
}

.catalog-header h1 {
    font-size: 28px;
    font-weight: bold;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.catalog-header p {
    color: #888888;
    font-size: 14px;
}

/* Main Catalog Section Container with Margins */
.catalog-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 40px;
    background-color: #000000;
    color: #ffffff;
}

/* Spacing between category sections */
.product-category-row {
    margin-bottom: 60px;
}

/* Header layout for each category (Title left, View All right) */
.category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    border-bottom: 1px solid #222222; /* Optional subtle separator line */
    padding-bottom: 15px;
}

.category-header h2 {
    font-size: 22px;
    font-weight: bold;
    letter-spacing: 1px;
    margin: 0;
}

.view-all-link {
    font-size: 13px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: opacity 0.3s ease;
}

.view-all-link:hover {
    opacity: 0.6;
}

/* Exactly 3 columns per category row */
.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Mobile responsiveness: drops to 1 column on smaller screens */
@media (max-width: 768px) {
    .category-grid {
        grid-template-columns: 1fr;
    }
}

body {
    background-color: #000000; /* Sets the outer page background to black */
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0; /* Removes any default browser margins */
}

/* Style for active navigation links */
.nav-links a.active {
    position: relative;
}

/* Creates the underline effect */
.nav-links a.active::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px; /* Distance below the text */
    width: 100%;
    height: 2px; /* Thickness of the underline */
    background-color: #ffffff; /* White line (change to red #ff3b30 if you prefer) */
}

/* Smooth color transition when hovering over nav links */
.nav-links a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease; /* Makes the color change smooth */
}

/* Turns the text red on hover */
.nav-links a:hover {
    color: #ff3b30 !important; /* Bright red accent color */
}

.view-all-link {
    font-size: 13px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: color 0.3s ease; /* Smooth transition */
}

.view-all-link:hover {
    color: #ff3b30; /* Turns red on hover */
}

.collection-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 35px;
    border-bottom: 1px solid #222222;
    padding-bottom: 20px;
    gap: 20px;
}

.collection-title-area h2 {
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 1px;
    margin: 0 0 8px 0;
}

.collection-title-area p {
    color: #888888;
    font-size: 13px;
    margin: 0;
    max-width: 600px;
    letter-spacing: 0.5px;
}

.filter-dropdown-container {
    flex-shrink: 0;
}

.custom-filter-select {
    background-color: #000000;
    color: #ffffff;
    border: 1px solid #333333;
    padding: 10px 16px;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    outline: none;
    transition: border-color 0.3s ease;
}

.custom-filter-select:hover, 
.custom-filter-select:focus {
    border-color: #ff3b30;
}

.category-header p {
    margin-top:10px;
    color:#aaa;
    font-size:14px;
}


.filter-dropdown-container select {

    background:#000;
    color:#fff;

    border:1px solid #444;

    padding:10px 20px;

    font-size:13px;

    text-transform:uppercase;

}