/* ========================= */
/* GLOBAL SETTINGS           */
/* ========================= */
body {
    background-color: #0a0a0a; /* Dark background */
    color: #ffffff;            /* White text */
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}



/* ========================================= */
/* 1. STRUCTURED MULTI-ROW HEADER            */
/* ========================================= */
.header-container {
    background-color: #000;
    border-bottom: 1px solid #1a1a1a;
    padding: 20px 5% 0 5%; /* Padding on top/sides, 0 on bottom */
}

.header-main {
    display: flex;
    justify-content: space-between; /* Pushes Logo left, Utilities right */
    align-items: flex-start;
}

/* Left Side: Logo */
.logo { font-size: 1.8rem; font-weight: 900; letter-spacing: 2px; text-transform: uppercase; color: #fff; margin-top: 5px; }
.logo span { color: #f39c12; }

/* Right Side: Utilities Stack */
.user-utilities {
    display: flex;
    flex-direction: column;
    align-items: flex-end; /* Aligns both rows to the absolute right */
    gap: 15px; /* Creates the space between EN|LT and the Cart */
}

/* Language Switch */
.lang-switch { font-size: 0.85rem; font-weight: bold; color: #555; }
.lang-switch a { color: #888; text-decoration: none; transition: 0.3s; }
.lang-switch a.active, .lang-switch a:hover { color: #f39c12; }
.lang-switch .divider { margin: 0 5px; }

/* Search and Cart Row */
.search-cart-row {
    display: flex;
    align-items: center;
    gap: 20px;
}

.search-box {
    display: flex;
    align-items: center;
    background: #111;
    border: 1px solid #333;
    border-radius: 20px;
    padding: 6px 15px;
}
.search-box i { color: #888; font-size: 0.9rem; margin-right: 8px; }
.search-box input { background: transparent; border: none; color: #fff; outline: none; font-size: 0.85rem; width: 140px; }

/* Kills the ugly blue link default */
.cart-link {
    color: #fff !important; 
    text-decoration: none;
    font-size: 1.4rem; /* Makes the bag symbol large and clickable */
    transition: color 0.3s ease;
}
.cart-link:hover { color: #f39c12 !important; }

/* Bottom Row: Navigation Links */
.header-nav-row {
    margin-top: 20px;
    padding: 15px 0;
    border-top: 1px solid #111; /* Adds a subtle line separating utilities from categories */
}

/* ========================================================= */
/* MAIN MENU & DROPDOWN STYLES                               */
/* ========================================================= */

/* /* The Horizontal List holding the main categories */ 
.main-menu {
    display: flex;
    gap: 45px; /* /* This creates perfectly equal spacing between every single word */
    list-style: none;
    padding: 0;
    margin: 0;
    justify-content: flex-start; /* /* "Center" centers all the links perfectly in the middle of the screen */
    /* CHANGED: flex-start forces all the items to line up on the left side! */
}

/* /* The Main Links (IEMs, Headphones, etc.) */
.main-menu > li > a {
    color: #fff !important;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    padding-bottom: 10px; /* /* Creates a 'hitbox' so the dropdown doesn't vanish if the mouse moves down */
    transition: 0.3s;
}

.main-menu > li > a:hover { 
    color: #f39c12 !important; 
}

/* /* -------------------------------------- */
/* /* THE DROPDOWN MAGIC                     */
/* /* -------------------------------------- */

/* /* We must make the parent "relative" so the dropdown knows where to attach itself */
.dropdown-item {
    position: relative; 
}

/* /* The Hidden Box */
.dropdown-menu {
    position: absolute;    /* /* Removes it from the normal flow so it floats over the hero image */
    top: 100%;             /* /* Attaches it exactly to the bottom of the main link */
    left: 0;
    background-color: #111; /* /* Premium dark grey background */
    min-width: 220px;      /* /* Forces the box to be wide enough for the text */
    padding: 10px 0;
    border: 1px solid #333;
    border-radius: 8px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.8); /* /* Heavy drop shadow so it pops off the background */
    
    /* /* THIS IS HOW WE HIDE IT: */
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px); /* /* Pushes it down 20 pixels so it can slide up later */
    transition: all 0.3s ease;
    z-index: 1000; /* /* Forces the menu to stay ON TOP of the Meze headphones */
}

/* /* HOW WE SHOW IT: When the user hovers over the parent <li>, change the hidden box */
.dropdown-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(5px); /* /* Slides up smoothly to sit just below the main link */
}

/* /* Styling the links INSIDE the dropdown box */
.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: block; /* /* Makes the entire row clickable, not just the word */
    padding: 12px 20px;
    color: #ccc !important; /* /* Light grey text */
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: capitalize; /* /* Turns off uppercase for easier reading */
    transition: 0.3s;
}

/* /* The Hover Effect for Dropdown Links */
.dropdown-menu a:hover {
    background-color: #1a1a1a;
    color: #f39c12 !important;
    padding-left: 28px; /* /* Beautiful luxury effect: the text slides slightly to the right when hovered! */
}



.main-menu a {
    color: #fff !important;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: 0.3s;
}
.main-menu a:hover { color: #f39c12 !important; }





/* ========================================= */
/* 2. HERO SLIDER                            */
/* ========================================= */
.hero-slider {
    position: relative;
    width: 100%;
    /* CHANGED: Calculates your exact screen height minus the header height. 
       This hides the 7 categories below the fold until you scroll down! */
    height: calc(100vh - 145px); 
    overflow: hidden;
    background: #050505;
}


.slide {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    opacity: 0; /* Hidden by default */
    transition: opacity 0.8s ease-in-out;
    display: flex;
    align-items: center;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    z-index: 5;
}

/* ========================================= */
/* THE SLIDER BACKGROUND & POSITIONING just below header      */
/* ========================================= */
.slide-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    
    /* THIS PUSHES THE PHOTO TO THE RIGHT: */
    object-position: right center; 
    
    /* Brings the photo back to full, 100% brightness! */
    opacity: 1; 
    z-index: -2;
}

/* THE SMOOTH GRADIENT FADE OVERLAY */
/* This creates a shadow on the left for the text, fading to clear on the right */
/* The Softer, Faster Fade */
.slide::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    /* CHANGED: It is now less black, and completely disappears by the middle (50%) of the screen */
    background: linear-gradient(to right, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 25%, rgba(0,0,0,0) 50%);
    z-index: -1;
}


/* Text Positioning and Wrapping */
.slide-content {
    position: relative;
    /* CHANGED: Adds a nice, clean gap from the left edge of the screen */
    padding-left: 8%; 
    
    /* CHANGED: Reduced from 550px down to 420px. 
       This forces the text to stop moving right and wrap downwards to a new line! */
    max-width: 420px; 
}

.slide-content h1 { 
    font-size: 3.8rem; /* Made slightly bigger for impact */
    margin: 10px 0 20px 0; 
    line-height: 1.1; 
}


/* The Pagination Numbers */
.slider-numbers {
    position: absolute;
    bottom: 30px;
    left: 10%;
    z-index: 10;
    display: flex;
    gap: 15px;
}

.nav-num {
    color: #fff;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    opacity: 0.4;
    transition: 0.3s;
    padding-bottom: 5px;
    border-bottom: 2px solid transparent;
}

.nav-num:hover { opacity: 0.8; }
.nav-num.active {
    opacity: 1;
    color: #f39c12;
    border-bottom: 2px solid #f39c12; /* Golden underline on active number */
    
}







/* ========================================================= */
/* 3. CATEGORY GRID (The 7 Options below the Hero Slider)    */
/* ========================================================= */

.premium-category-bar {
    /* "display: grid" tells the browser to put these items in a row or column */
    display: grid;
    
    /* This creates exactly 7 equal columns. 1fr means "1 fraction of the available space" */
    grid-template-columns: repeat(7, 1fr); 
    
    /* GAP is the secret sauce! This adds 30 pixels of empty space BETWEEN each category */
    gap: 30px; 
    
    /* PADDING creates space inside the container. 
       80px on the top, 5% on the right, 80px on the bottom, 5% on the left.
       This stops it from touching the Hero slider above and the section below! */
    padding: 80px 5%; 
    
    background-color: #050505; /* Keeps the background deep black */
}

/* This controls the individual "Cards" (like the IEM box) */
.p-cat-box {
    display: flex;
    flex-direction: column; /* Stacks the image on top of the text */
    align-items: center;    /* Centers everything in the middle */
    text-decoration: none;  /* Removes the ugly blue link underlines */
    color: #fff;
    transition: transform 0.3s ease; /* Makes the hover effect smooth */
}

/* When the user hovers their mouse over the category, it gently lifts up */
.p-cat-box:hover { 
    transform: translateY(-8px); 
}

/* This fixes your "tiny image" problem! */
.p-cat-box img {
    width: 100%; /* Forces the image to fill the column width */
    aspect-ratio: 1 / 1; /* Forces the image to be a perfect square, no matter what size screen! */
    object-fit: cover; /* Ensures the photo fills the square without stretching weirdly */
    
    border-radius: 12px; /* Softens the corners for a premium, modern look */
    border: 1px solid #1a1a1a; /* Adds a very faint border */
    background-color: #111; /* Gives a dark grey background while the image loads */
    
    opacity: 0.8; /* Slightly dims the photo... */
    transition: all 0.3s ease;
}

/* ...until the user hovers, then it brightens and zooms in slightly! */
.p-cat-box:hover img { 
    opacity: 1; 
    border-color: #f39c12; /* Border turns gold on hover */
    box-shadow: 0 10px 20px rgba(243, 156, 18, 0.1); /* Adds a faint golden glow */
}

/* This controls the text (like "IEMs") below the photo */
.p-cat-box span {
    margin-top: 15px; /* Creates a nice gap between the photo and the text */
    font-weight: 800;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

/* Text turns gold when hovering over the card */
.p-cat-box:hover span {
    color: #f39c12; 
}






/* ========================= */
/* NAVIGATION BAR            */
/* ========================= */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background-color: #121212;
    border-bottom: 1px solid #222;
}

/* ========================================= */
/* 2. UPDATED NAVIGATION BAR & LOGO          */
/* ========================================= */


/* ========================================= */
        /* 2. NAVIGATION BAR                         */
        /* ========================================= */
        .logo { 
            font-size: 1.5rem; 
            font-weight: 900; 
            letter-spacing: 2px; 
            text-transform: uppercase;
            color: #ffffff; /* 100% Pure White */
        }
        .logo span { 
            color: #f39c12; /* Luminous Gold */
        }

/* Style for the second part of your brand name: 'AUDIO' */
.logo span {
    color: #f39c12; /* Luminous Gold color for contrast */
}

/* Standard Nav Links styling */
.nav-links { display: flex; gap: 30px; list-style: none; margin: 0; padding: 0; }
.nav-links a { color: #fff; text-decoration: none; font-weight: bold; text-transform: uppercase; font-size: 0.85rem;

}

.logo span {
    color: #f39c12; /* Luminous Gold color */
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
}

/* ========================= */
/* HERO SECTION              */
/* ========================= */
.hero {
    height: 60vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    
    /* ADD HERO BACKGROUND PHOTO HERE LATER */
    /* Example: background-image: url('my-hero-photo.jpg'); */
    background-color: #1a1a1a; 
    border-bottom: 2px solid #f39c12;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.hero p {
    color: #bbb;
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* ========================= */
/* BUTTONS                   */
/* ========================= */
.btn-primary {
    background-color: #f39c12;
    color: #000;
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
}

.btn-secondary {
    background-color: transparent;
    color: #fff;
    padding: 12px 24px;
    border: 1px solid #555;
    border-radius: 5px;
    cursor: pointer;
}

/* ========================= */
/* SHOP SECTION & GRID       */
/* ========================= */
.shop-section {
    padding: 60px 5%;
}

.section-title {
    margin-bottom: 40px;
}

.product-grid {
    display: grid;
    /* This makes the grid responsive. It creates columns automatically */
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* ========================= */
/* PRODUCT CARDS             */
/* ========================= */
.product-card {
    background-color: #121212;
    border: 1px solid #333;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #f39c12;
    color: #000;
    padding: 5px 10px;
    font-size: 0.8rem;
    font-weight: bold;
    border-radius: 3px;
}

/* ========================= */
/* PRO IMAGE CONTAINER FIX   */
/* ========================= */
.image-container {
    width: 100%;
    height: 250px; /* Locks the height for all cards */
    background-color: #111111; /* Gives a nice dark grey studio backdrop */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-image {
    width: 100%;
    height: 100%;
    /* CHANGED TO CONTAIN: This forces the whole image to show without cropping or weird stretching */
    object-fit: contain; 
    padding: 20px; /* Gives the product 20px of breathing room from the edges */
    box-sizing: border-box; /* Makes sure the padding doesn't break the box size */
    transition: transform 0.4s ease;
}

.product-card:hover .product-image {
    transform: scale(1.05); /* Subtle zoom on hover */
}

.card-content {
    padding: 20px;
}

.category {
    color: #888;
    font-size: 0.8rem;
    text-transform: uppercase;
}

.description {
    color: #bbb;
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 20px;
}

.price-row {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.card-buttons {
    display: flex;
    gap: 10px;
}

.card-buttons button {
    flex: 1; /* Makes buttons equal width */
}


<style>
        /* ========================================= */
        /* 1. GLOBAL STYLES                          */
        /* Change background colors and fonts here   */
        /* ========================================= */
        body {
            margin: 0;
            padding: 0;
            background-color: #050505; /* Super dark grey/black */
            color: #ffffff;
            font-family: 'Helvetica Neue', Arial, sans-serif;
        }

        /* ========================================= */
        /* 2. NAVIGATION BAR                         */
        /* ========================================= */
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 5%;
            background-color: #000;
            border-bottom: 1px solid #222;
        }
        .logo { font-size: 1.5rem; font-weight: 900; letter-spacing: 2px; }
        .logo span { color: #f39c12; } /* Luminous Gold */
        .nav-links { display: flex; gap: 30px; list-style: none; }
        .nav-links a { color: #fff; text-decoration: none; font-weight: bold; text-transform: uppercase; font-size: 0.9rem;}

        /* ========================================= */
        /* 3. BIG PRODUCT HERO DISPLAY (Like Fosi), i changed this   */
        /* This creates the split left/right layout  */
        /* ========================================= */
        
        
        .hero-text-side {
            flex: 1; /* Takes up 50% of the space */
            padding-right: 40px;
        }
        
        .hero-badge {
            background: #f39c12;
            color: #000;
            padding: 5px 12px;
            font-weight: 900;
            text-transform: uppercase;
            font-size: 0.8rem;
            border-radius: 4px;
            display: inline-block;
            margin-bottom: 20px;
        }

        .hero-text-side h1 {
            font-size: 3.5rem;
            margin: 0 0 20px 0;
            line-height: 1.1;
        }

        .hero-text-side p {
            color: #aaa;
            font-size: 1.2rem;
            margin-bottom: 30px;
        }

        .hero-image-side {
            flex: 1; /* Takes up the other 50% */
            display: flex;
            justify-content: center;
        }

        /* Make sure your big hero image doesn't overflow */
        .hero-image-side img {
            max-width: 100%;
            height: auto;
            transform: scale(1.1); /* Makes the product pop out a bit */
        }

        .btn-gold {
            background: #f39c12;
            color: #000;
            padding: 15px 40px;
            text-decoration: none;
            font-weight: 800;
            font-size: 1.1rem;
            border-radius: 5px;
            display: inline-block;
            transition: 0.3s;
        }
        .btn-gold:hover { background: #e67e22; transform: scale(1.05); }

        /* ========================================= */
        /* 4. VISUAL CATEGORIES (Like HeadphoneZone) */
        /* ========================================= */
        .section-title { font-size: 2rem; margin-bottom: 40px; font-weight: 800; }
        
        .category-row {
            display: flex;
            justify-content: center;
            gap: 40px;
            flex-wrap: wrap; /* Allows wrapping on small mobile screens */
        }

        .cat-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-decoration: none;
            color: #fff;
            transition: 0.3s;
        }

        .cat-item:hover { transform: translateY(-10px); }
        .cat-item:hover span { color: #f39c12; }

        .cat-circle {
            width: 120px;
            height: 120px;
            background-color: #1a1a1a;
            border-radius: 50%; /* Makes it a perfect circle */
            border: 2px solid #333;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }
        /* Put your category images in the circle */
        .cat-circle img { width: 80%; height: 80%; object-fit: contain; }
        .cat-item span { font-weight: bold; font-size: 1.1rem;
         }





/* ========================================================= */
/* 4. ALTERNATING FEATURE BLOCKS (Zig-Zag Layout)            */
/* ========================================================= */

/* // This container holds BOTH blocks. We give it massive padding top and bottom (120px) 
      to create that "decent space" you asked for. It isolates this section so it feels important. */
.feature-sections-container {
    padding: 120px 5%;
    background-color: #000; /* Deep black background */
}

/* // This is the box that holds one picture and one paragraph */
.feature-block {
    display: flex;         /* // Puts the text and image side-by-side instead of stacked */
    align-items: center;   /* // Centers them vertically so they line up perfectly */
    gap: 60px;             /* // Creates a huge 60px gap between the text and the photo */
    margin-bottom: 120px;  /* // Creates a huge gap between the first block and the second block */
}

/* // This removes the margin on the very last block so it doesn't create unwanted extra space at the bottom */
.feature-block:last-child {
    margin-bottom: 0;
}

/* // THE MAGIC TRICK: When we add the "reverse" class to HTML, "row-reverse" tells the browser 
      to read right-to-left instead of left-to-right. This is how the photo jumps to the left side! */
.feature-block.reverse {
    flex-direction: row-reverse;
}

/* // "flex: 1" tells the text and image to split the screen exactly 50/50 */
.feature-text {
    flex: 1;
}
.feature-image {
    flex: 1;
}

/* // Styling the Big Text */
.feature-text h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin: 0 0 20px 0;
    line-height: 1.1;
}

/* // Styling the paragraph text */
.feature-text p {
    font-size: 1.1rem;
    color: #aaa;           /* // Light grey so it's easy to read but not blinding white */
    line-height: 1.6;      /* // Gives the text breathing room between lines */
    margin-bottom: 35px;
}

/* // The Image Styling */
.feature-image img {
    width: 100%;           /* // Forces the image to take up its entire 50% half of the screen */
    height: auto;
    border-radius: 12px;   /* // Premium rounded corners */
    object-fit: cover;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5); /* // Adds a deep shadow under the image to make it pop */
}

/* // Button Styles */

/* // The solid gold button (if you don't already have it in your CSS) */
.btn-gold {
    background: #f39c12;
    color: #000;
    padding: 15px 40px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1rem;
    text-transform: uppercase;
    border-radius: 5px;
    display: inline-block;
    transition: 0.3s;
}
.btn-gold:hover { 
    background: #e67e22; 
    transform: translateY(-3px); /* // Button jumps up slightly when hovered */
}

/* // The outline button (great for reading guides) */
.btn-outline {
    background: transparent;
    color: #f39c12;
    border: 2px solid #f39c12;
    padding: 13px 40px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1rem;
    text-transform: uppercase;
    border-radius: 5px;
    display: inline-block;
    transition: 0.3s;
}
/* // When hovered, it fills in with gold and the text turns black */
.btn-outline:hover {
    background: #f39c12;
    color: #000;
    transform: translateY(-3px);
}


















        /* ========================================= */
        /* 5. RICH PRODUCT GRID (The Storefront)     */
        /* ========================================= */
        .product-section { padding: 40px 5% 80px 5%; }
        
        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }

        .product-card {
            background: #111;
            border: 1px solid #222;
            border-radius: 8px;
            padding: 20px;
            position: relative;
        }

        /* The little sale tag on the top left of the card */
        .sale-tag {
            position: absolute;
            top: 15px; left: 15px;
            background: #e74c3c; /* Red for sale */
            color: white;
            padding: 3px 10px;
            font-size: 0.8rem;
            font-weight: bold;
            border-radius: 3px;
        }

        .product-img-box {
            height: 250px;
            background: #0a0a0a;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Add your product photos here */
        .product-img-box img { max-width: 90%; max-height: 90%; object-fit: contain; }

        .stars { color: #f39c12; font-size: 0.9rem; margin-bottom: 5px; }
        .brand { color: #888; font-size: 0.8rem; text-transform: uppercase; font-weight: bold; }
        .title { font-size: 1.2rem; font-weight: bold; margin: 5px 0 15px 0; }
        
        .price-box { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px;}
        .price { font-size: 1.3rem; font-weight: bold; color: #fff; }
        .old-price { text-decoration: line-through; color: #666; font-size: 0.9rem; margin-left: 10px; }

        .btn-cart {
            width: 100%;
            background: #222;
            color: #fff;
            border: 1px solid #444;
            padding: 12px;
            font-weight: bold;
            border-radius: 5px;
            cursor: pointer;
            transition: 0.3s;
        }
        .btn-cart:hover { background: #f39c12; color: #000; border-color: #f39c12; }
        
        /* ========================================= */
        /* 6. BLOG & REVIEWS SECTION                 */
        /* ========================================= */
        .blog-section {
            padding: 60px 5%;
            background-color: #0a0a0a;
            text-align: center;
            border-top: 1px solid #1a1a1a;
        }
        
        .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .blog-card {
            background: #111;
            border-radius: 8px;
            overflow: hidden;
            border: 1px solid #222;
            text-align: left;
            transition: 0.3s;
        }
        .blog-card:hover { border-color: #f39c12; }
        .blog-img { height: 180px; background: #222; display: flex; align-items: center; justify-content: center; }
        .blog-img img { width: 100%; height: 100%; object-fit: cover; }
        .blog-content { padding: 20px; }
        .blog-content h3 { margin: 0 0 10px 0; font-size: 1.2rem; }
        .blog-content p { color: #888; font-size: 0.9rem; margin-bottom: 15px; }
        .read-more { color: #f39c12; text-decoration: none; font-weight: bold; font-size: 0.9rem; }

        /* ========================================= */
        /* 7. VALUE PROPOSITIONS (The Popping Icons) */
        /* ========================================= */
        .value-props {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 40px;
            padding: 60px 5%;
            background-color: #050505;
            border-top: 1px solid #1a1a1a;
        }

        .prop-item {
            text-align: center;
            max-width: 200px;
            transition: transform 0.3s ease; /* This makes the pop-out smooth */
        }

        /* THIS MAKES IT POP OUT WHEN THE MOUSE IS ON TOP */
        .prop-item:hover {
            transform: scale(1.15) translateY(-5px); 
        }

        .prop-icon { font-size: 2.5rem; margin-bottom: 15px; }
        .prop-title { font-weight: bold; margin-bottom: 5px; font-size: 1.1rem; }
        .prop-desc { color: #888; font-size: 0.85rem; }

        /* ========================================= */
        /* 8. THE MEGA FOOTER                        */
        /* ========================================= */
        footer {
            background-color: #000;
            padding: 60px 5% 30px 5%;
            border-top: 2px solid #222;
        }

        .footer-top {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-col h4 {
            color: #f39c12;
            margin: 0 0 20px 0;
            font-size: 1.1rem;
            text-transform: uppercase;
        }

        .footer-col ul { list-style: none; padding: 0; margin: 0; }
        .footer-col ul li { margin-bottom: 12px; }
        .footer-col ul li a { color: #aaa; text-decoration: none; font-size: 0.9rem; transition: 0.2s; }
        .footer-col ul li a:hover { color: #fff; }

        .newsletter input {
            width: 100%;
            padding: 12px;
            background: #111;
            border: 1px solid #333;
            color: #fff;
            border-radius: 4px;
            margin-bottom: 10px;
            box-sizing: border-box;
        }
        .newsletter button {
            width: 100%;
            padding: 12px;
            background: #f39c12;
            color: #000;
            border: none;
            font-weight: bold;
            border-radius: 4px;
            cursor: pointer;
        }

        /* Social Icons Pop-out */
        .social-links { margin-top: 20px; display: flex; gap: 15px; }
        .social-icon {
            font-size: 1.5rem;
            text-decoration: none;
            transition: transform 0.3s ease;
        }
        .social-icon:hover { transform: scale(1.3); } /* Pops out! */

        /* Footer Bottom (Cheeky Text & Payments) */
        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #222;
        }
        .cheeky-text {
            font-weight: bold;
            font-size: 1rem;
            margin-bottom: 10px;
        }
        .warning-text {
            color: #666;
            font-size: 0.85rem;
            max-width: 600px;
            margin: 0 auto 20px auto;
            line-height: 1.5;
        }
        .payment-icons span {
            font-size: 1.5rem;
            margin: 0 10px;
            color: #aaa;
        }
        /* ========================================= */
        /* PROFESSIONAL ICON STYLING                 */
        /* ========================================= */
        
        /* Make the Value Prop Icons Gold */
        .prop-icon i { 
            color: #f39c12; 
            font-size: 2.5rem; 
        }

        /* Style the Social Media Icons */
        .social-icon i {
            color: #fff;
            font-size: 1.5rem;
            transition: color 0.3s ease;
        }
        .social-icon:hover i {
            color: #f39c12; /* Turns gold on hover */
        }

        /* Style the Payment Icons */
        .payment-icons i {
            font-size: 2.2rem;
            color: #555; /* Subtle grey so they don't distract */
            margin: 0 10px;
            transition: color 0.3s ease;
        }
        .payment-icons i:hover {
            color: #fff; /* Light up when hovered */
        }
        
        
        

    </style>


/*If you copy an entire <div class="product-card"> block in the HTML and paste it as a 5th item, it will automatically drop down and create a new row perfectly centered.

/* ========================================================= */
/* 5. TRENDING GEAR PRODUCT GRID                             */
/* ========================================================= */

/* /* The main wrapper for the whole section */
.trending-section {
    padding: 80px 5%;
    background-color: #050505;
}

/* /* Top row with the Title and "View All" link */
/* /* Top row with the Title and "View All" link */
.section-header {
    display: flex;
    flex-direction: column; /* /* Stacks the title and link vertically */
    align-items: center; /* /* Forces them into the dead center */
    text-align: center;
    margin-bottom: 40px;
    border-bottom: 1px solid #1a1a1a;
    padding-bottom: 15px;
    gap: 10px; /* /* Puts a nice little gap between the Title and the Link */
}

.section-header h2 {
    font-size: 2.2rem;
    font-weight: 800;
    text-transform: uppercase;
    margin: 0;
}

.view-all-link {
    color: #f39c12;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
    transition: 0.3s;
}

.view-all-link:hover {
    color: #fff;
}

/* /* THE MAGIC GRID: 
   "auto-fit" and "minmax" tell the browser: 
   "Make columns at least 250px wide. If there's extra room, stretch them. 
   If there isn't enough room, automatically wrap them to the next row!" 
*/
/* /* THE MAGIC GRID */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    
    /* /* THESE TWO LINES CENTER THE ENTIRE GRID: */
    max-width: 1200px; /* /* Stops the products from stretching too wide on giant desktop monitors */
    margin: 0 auto; /* /* Pushes the invisible grid box perfectly to the center of the screen */
}
/* /* The Individual Product Card */
.product-card {
    background-color: #0a0a0a;
    border: 1px solid #1a1a1a;
    border-radius: 8px;
    padding: 20px;
    transition: transform 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column; /* /* Stacks image, text, and button vertically */
}

/* /* Gentle floating hover effect */
.product-card:hover {
    transform: translateY(-5px);
    border-color: #333;
}

/* /* Product Image Wrapper */
.img-container {
    width: 100%;
    margin-bottom: 20px;
    border-radius: 6px;
    overflow: hidden;
    background-color: #111; /* /* Dark background while image loads */
}

/* /* Forces product images to be perfect squares so the grid is perfectly even */
.img-container img {
    width: 100%;
    aspect-ratio: 1 / 1; 
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* /* Slight zoom on image when hovering the card */
.product-card:hover .img-container img {
    transform: scale(1.05);
}

/* /* Text Styling */
.product-info {
    flex-grow: 1; /* /* Pushes the "Add to cart" button to the very bottom */
    margin-bottom: 20px;
}

.brand {
    font-size: 0.8rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 5px 0 10px 0;
    line-height: 1.3;
}

.price {
    font-size: 1.2rem;
    font-weight: 800;
    color: #f39c12; /* /* Gold price tag */
    margin: 0;
}

/* /* The Add to Cart Button */
.btn-cart-add {
    display: block;
    text-align: center;
    background-color: transparent;
    color: #fff;
    border: 1px solid #333;
    padding: 12px;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.85rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-cart-add:hover {
    background-color: #f39c12;
    border-color: #f39c12;
    color: #000;
}

/*/*  for logos code start from here */




/* ========================================================= */
/* 6. BRAND LOGO TICKER                                      */
/* ========================================================= */

/* Container styling with a subtle top and bottom border */
.brand-ticker-section {
    background-color: #050505;
    padding: 60px 0; /* 60px of breathing room top and bottom */
    border-top: 1px solid #1a1a1a;
    border-bottom: 1px solid #1a1a1a;
}

/* Hides anything that slides outside the left/right edges of the screen */
.ticker-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
}

/* The track holding all the logos */
.ticker-track {
    display: flex;
    align-items: center;
    width: max-content; /* Allows the track to be as wide as it needs to be */
    
    /* THE ANIMATION TRIGGER:
       "scrollLeftToRight" is the animation name (defined below).
       "35s" is the speed. Higher number = slower movement.
       "linear" keeps it at a constant speed.
       "infinite" makes it loop forever.
    */
    animation: scrollLeftToRight 35s linear infinite;
}

/* Luxury Touch: Pauses the animation if the user hovers their mouse over the track */
.ticker-track:hover {
    animation-play-state: paused;
}

/* The box holding each individual logo */
.logo-slide {
    padding: 0 40px; /* Creates a nice 40px gap between the logos */
}

/* The logo image styling */
.logo-slide img {
    height: 50px; /* Locks all logos to the same height for neatness */
    width: auto;
    opacity: 0.4; /* Dims them slightly so they aren't too bright */
    filter: grayscale(100%); /* Makes them black and white */
    transition: all 0.3s ease;
}

/* Hovering over a single logo brings it to full color and brightness */
.logo-slide img:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.05); /* Slight pop out effect */
}

/* THE KEYFRAMES (Left to Right Movement) 
   Because we want it to go Left to Right, we start the track pushed halfway to the left (-50%).
   We animate it moving to the 0 position. 
   When it hits 0, it instantly jumps back to -50% and loops seamlessly.
*/
@keyframes scrollLeftToRight {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}


/* /* ========================================================= */
/* /* LEGAL DISCLAIMER STYLES                                   */
/* /* ========================================================= */

.demo-disclaimer {
    color: #666; /* /* Dark grey so it blends in and doesn't ruin your design */
    font-size: 0.75rem; /* /* Very small text */
    text-align: center;
    max-width: 800px;
    margin: 0 auto 20px auto; /* /* Centers it and adds space below it */
    line-height: 1.5;
    padding: 10px;
    border: 1px dashed #333; /* /* A subtle dashed box makes it look like an official legal notice */
    border-radius: 4px;
}




























