/* --- Root Variables for easy updating --- */
:root {
    --primary-black: #000000;
    --primary-white: #ffffff;
    --gemini-blue: #0a8fa7;
    --gemini-red: #b81870;
    --gemini-yellow: #FBBC05;
    --gemini-green: #34A853;
    /* The modern Gemini Sparkle Gradient */
    --gemini-gradient: linear-gradient(45deg, #0a8fa7, #3e2d90, #b81870, #FBBC05);
}
body {

    min-height: 100vh;
    margin: 0;
    
    /* THE GEMINI GRADIENT BACKGROUND */
    /* We use a large, blurred radial gradient to make it look like 'moving' light */
    background: #000000;
    
}
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none; /* Allows you to click "through" the border to buttons below */
    z-index: 9999; /* Keeps it on top of everything */
    
    /* The 10px frame using your specific gradient */
    border: 5px solid;
    border-image-source: linear-gradient(45deg, #0a8fa7, #3e2d90, #b81870, #FBBC05);
    border-image-slice: 1;
}

/* Adjust the main page padding so content doesn't touch the border */
body {
    padding: 10px; 
    box-sizing: border-box;
}
/* Ensure all global text remains white */
p, h1, h2, h3, h4, span {
    color: var(--primary-white);
}


/* --- Header & Nav --- */
header {
    background: var(--primary-black);
    color: var(--primary-white);
    padding: 1.2rem 1%;
    border-bottom: 2px solid transparent;
}

header.site-header{
    border-image: var(--gemini-gradient) 1; /* Thin gradient underline */
    
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: -1px;
    text-transform: uppercase;
    /* This makes the whole word GEMNIO have the gradient */
    background: var(--gemini-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}



nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 25px;
}

nav ul li a {
    color: var(--primary-white);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: 0.3s;
}



/* Updated CTA Button to match brand */
.cta-btn {
    padding: 18px 45px;
    background: var(--gemini-gradient);
    border: none;
    color: white;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 50px;
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
    display: inline-block;
}

.cta-btn:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
    box-shadow: 0 0 30px rgba(52, 32, 106, 0.4);
}

/* The wrapper that goes all the way across */
.grid-container {
    background-color: rgb(0, 0, 0); /* Your requested 0.8 fading */
    padding: 50px 30px;
    border-radius: 15px;
    width: 100%;
    box-shadow: 0 10px 30px rgba(184, 24, 112, 0.5);
    border: 1px solid #222;
    box-sizing: border-box;
}

/* Ensure the grid itself is clean inside the container */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    background: transparent; /* Remove any old backgrounds */
    padding: 0;
}


/* Gradient Badge for Discounts */
.badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--gemini-gradient);
    color: white;
    padding: 6px 14px;
    font-size: 0.75rem;
    font-weight: bold;
    border-radius: 20px;
}

.img-placeholder {
    height: 250px;
    background: #e0e0e0;
    border-radius: 8px;
    margin-bottom: 20px;
}


.product-card:hover {
    border-color: var(--gemini-blue);
    
}
.product-card h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
   
}

.product-card p {
    font-weight: bold;
    color: var(--gemini-blue);
}

/* ... [Keep the previous :root variables] ... */

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
    
}

.site-logo {
    height: 40px; /* Adjust based on your logo shape */
    width: auto;
}

/* In your style.css file */
/* 1. The Banner: Purely for the graphic now */
.hero-banner {
    width: 100%;
    height: 450px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    
    /* THE FADING OVERLAY */
    /* Adjust 0.7 to 0.5 for less fading, or 0.9 for more fading */
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.363), rgba(0, 0, 0, 0)), 
        url('gemnio-banner-removebg-preview.png');

}

/* 2. The Intro Section: Content below the banner */
.hero-intro {
    text-align: center;
    background-color: rgb(0, 0, 0); /* Change 0.7 to adjust fading */
    padding: 50px 30px;
    border-radius: 15px;
    display: inline-block; /* Wraps tightly around content */
    width: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-image: var(--gemini-gradient) 1;
}


@media (max-width: 768px) {
    .menu-toggle {
        display: block; /* Show Hamburger */
        z-index: 1001;
        position: relative;
    }

    /* FIX: Force the menu to show when .active is present */
    .nav-links {
        display: flex !important; /* Forces layout even if desktop hidden it */
        position: fixed;
        top: 0;
        right: -100%; /* Hidden off-screen */
        height: 100vh;
        width: 280px;
        background-color: #1a1a1a; 
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 20px;
        transition: 0.4s ease-in-out;
        box-shadow: -5px 0 15px rgba(0,0,0,0.5);
        z-index: 1000;
        visibility: hidden; /* Keep it invisible until active */
    }

    /* FIX: Slide it in and make it visible */
    .nav-links.active {
        right: 0;
        visibility: visible;
    }

    .nav-links li {
        margin: 15px 0;
        margin-left: 0; /* Reset desktop margin */
        width: 100%;
    }

    /* Ensure links inside are white and visible */
    .nav-links li a {
        color: white;
        width: 100%;
        display: flex;
    }

    /* Mobile Dropdown styling */
    .dropdown-content {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: transparent;
        box-shadow: none;
        padding-left: 20px;
        border-top: none;
        display: none; 
    }

    .dropdown.open .dropdown-content {
        display: block;
        max-height: none; /* Reset max-height conflict */
    }
}

/* Optional: If the text is hard to see over the banner graphics, 
   add a subtle dark overlay to the hero content */
.hero-content {
    background: rgba(0, 0, 0, 0.4); 
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(5px); /* Softens the background behind text */
    
}

.hero-content h1 {
    font-size: 5rem;
    font-weight: 900;
    color: white;
    letter-spacing: 5px;
    margin-bottom: 0.5rem;
}

.img-box {
    width: 100%;
    height: 250px;
    overflow: hidden;
    border-radius: 8px;
    background: #f4f4f4;
    margin-bottom: 15px;
}

.img-box img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Keeps product photos looking sharp */
}

.buy-btn {
    width: 100%;
    margin-top: 15px;
    padding: 10px;
    background: var(--primary-black);
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 4px;
    transition: 0.3s;
}

.buy-btn:hover {
    background: var(--gemini-blue);
}

/* Contact Form Styling */
.contact-section {
    max-width: 600px;
    margin: 100px auto;
    text-align: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

.contact-form input, .contact-form textarea {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

/* --- Newsletter --- */
.newsletter {
    padding: 80px 5%;
    background: transparent; /* Keep outer area clear */
    text-align: center;
}

.newsletter-content {
    /* Adjustable Black Background Box */
    background-color: rgba(0, 0, 0, 0.8); /* Change 0.7 to adjust fading */
    padding: 50px 30px;
    border-radius: 15px;
    display: inline-block; /* Wraps tightly around content */
    width: 100%;
    box-shadow: 0 10px 30px #19589c;
    border: 1px solid #19589c; /* Subtile border to define the edge */
}

.newsletter-content h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    /* Apply the Gradient to the Header too */
    background: var(--gemini-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.newsletter-content p {
    color: #ccc; /* Slightly dimmed white for the subtext */
}

.newsletter-form {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap; /* Good for mobile */
}

.newsletter-form input {
    padding: 15px 25px;
    width: 300px;
    background: #111; /* Dark input */
    border: 1px solid #444;
    border-radius: 50px;
    color: white;
    outline: none;
    transition: border-color 0.3s;
}

.newsletter-form input:focus {
    border-color: var(--gemini-blue);
}

.newsletter-form button {
    padding: 15px 35px;
    background: var(--gemini-gradient);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(25, 88, 156,0.3);
}

/* --- Footer --- */
footer {
    background: var(--primary-black);
    color: white;
    padding: 60px 5% 20px;
    margin-top: 50px;
}

.footer-container {
    display: flex;
    flex-wrap: wrap; /* Allows columns to stack on mobile */
    justify-content: space-between; /* Pushes socials to the far right */
    align-items: flex-start;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #333;
}

/* Ensure the social section stays on the right but doesn't disappear */
.footer-social {
    min-width: 200px;
    text-align: left; /* Keeps text aligned left within the right-aligned block */
}

.footer-brand {
    /* This is the key: it limits how wide the paragraph can get */
    flex: 0 1 400px; 
    text-align: left;
}
.footer-brand .logo-text {
    margin-bottom: 15px;
    display: inline-block; /* Keeps the gradient from stretching the whole width */
}

.footer-links h3, .footer-social h3 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: #999;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links ul li a:hover {
    color: var(--gemini-blue);
}

.social-icons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-icons a {
    color: #999;
    text-decoration: none;
    font-size: 0.9rem;
}

.social-icons a:hover {
    color: var(--gemini-red); /* Or any color from your gradient */
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    font-size: 0.8rem;
    color: #666;
}

.footer-bottom a {
    color: #666;
    text-decoration: none;
}
/* --- Navigation Dropdowns --- */
.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #4285F4;
    min-width: 160px;
    box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
    z-index: 10;
    list-style: none;
    padding: 10px 0;
}

.dropdown-content li a {
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-size: 0.85rem;
}

.dropdown-content li a:hover {
    background-color: #333;
    color: var(--gemini-blue);
}

.dropdown:hover .dropdown-content {
    display: block;
}



/* --- Responsive Auto-Adjustment (Mobile First) --- */
@media (max-width: 768px) {
    .nav-links {
        flex-direction: column;
        display: none; /* In a real site, you'd toggle this with a hamburger menu */
    }
    
    .hero-banner {
        height: 250px;
    }
    
    .hero-intro h1 {
        font-size: 2.5rem;
    }

    .product-grid {
        grid-template-columns: 1fr; /* Stack products vertically on phones */
    }
}
/* Category Specific Styling */
.category-intro {
    padding: 60px 5% 40px;
    text-align: center;
    /* This layers a 70% black tint OVER your gradient */
    background: linear-gradient(rgba(0, 0, 0, 0.336), rgba(0, 0, 0, 0.39)), var(--gemini-gradient);
    border-radius: 15px;
    margin: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.category-intro h1 {
    font-size: 5rem;
    font-weight: 900;
    text-transform: uppercase;
    background: white;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.category-intro p {
    color: #666;
    font-size: 1.1rem;
    margin-top: 10px;
}
/* Contact Page Layout */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1000px;
    margin: 40px auto;
    text-align: left;
}

.contact-section {
    padding: 100px 5%;
    text-align: center;
}

.contact-section h1 {
    font-size: 3.5rem;
    font-weight: 900;
    background: var(--gemini-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

.contact-social h3 {
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.social-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social-list a {
    text-decoration: none;
    color: var(--primary-black);
    font-weight: 600;
    font-size: 1.1rem;
    transition: 0.3s;
}

.social-list a:hover {
    color: var(--gemini-blue);
    padding-left: 10px;
}

/* Mobile Fix for Contact Page */
@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
}
/* Contact Page Wrapper */
.contact-page-wrapper {
    max-width: 800px;
    margin: 40px auto;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

/* Social Icon Styling */
.contact-social-top {
    text-align: center;
}

.contact-social-top h3 {
    margin-bottom: 25px;
    font-size: 1.8rem;
    letter-spacing: 1px;
}

.social-icon-row {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.social-icon-row a {
    font-size: 2.5rem; /* Large, easy-to-click icons */
    color: var(--primary-black);
    transition: transform 0.3s, color 0.3s;
}

/* Hover effects using your GEMNIO colors */
.social-icon-row a:hover {
    transform: translateY(-5px);
}

.fa-facebook:hover { color: #1877F2; }
.fa-instagram:hover { color: #E4405F; }
.fa-tiktok:hover { color: #000000; }
.fa-youtube:hover { color: #FF0000; }

/* Form Grouping for Name/Email on one line */
.form-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

/* Responsive Fix */
@media (max-width: 600px) {
    .form-group {
        grid-template-columns: 1fr;
    }
    .social-icon-row {
        gap: 20px;
    }
    .social-icon-row a {
        font-size: 2rem;
    }
}
/* Pop-up Overlay */
.popup-overlay {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

/* Pop-up Box */
.popup-content {
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    position: relative;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.popup-header .logo-text {
    margin-bottom: 10px;
}

.popup-content h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.popup-content p {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.5;
}

/* Form Styling */
#popup-form textarea {
    width: 100%;
    height: 120px;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 12px;
    resize: none;
    font-family: inherit;
    margin-bottom: 20px;
    outline: none;
}

#popup-form textarea:focus {
    border-color: var(--gemini-blue);
}

/* Close Button */
.close-popup {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #999;
}

.alt-link {
    margin-top: 15px;
    font-size: 0.85rem;
}

.alt-link a {
    color: var(--gemini-blue);
    text-decoration: underline;
}
.loader {
    border: 4px solid #333;
    border-top: 4px solid var(--gemini-blue);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 40px auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
/* Align Icons with Text */
.nav-links a {
    display: flex;
    align-items: center;
    gap: 8px; /* Space between icon and text */
    transition: all 0.3s ease;
}

.material-icons-outlined {
    font-size: 18px; /* Adjust size to match your font */
}

/* Ensure the main nav links are visible */
.nav-links a {
    color: #ffffff; /* White text for the dark banner */
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}

/* Main Link Hover (Turns Blue) */
.nav-links a:hover {
    color: #00d4ff; 
}

/* The Dropdown Box - DARK for maximum readability */
.dropdown-content {
    display: block;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    background-color: #1a1a1a; /* Dark Charcoal background */
    min-width: 220px;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.5);
    border-top: 3px solid #00d4ff; /* Electric Blue top border */
    border-radius: 0 0 8px 8px;
    padding: 10px 0;
    z-index: 100;
    transform: translateY(15px);
    transition: all 0.3s ease-in-out;
}

/* Reveal on Hover */
.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Dropdown Individual Links */
.dropdown-content li a {
    color: #eeeeee;
    padding: 12px 20px;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    width: 100%;
    transition: all 0.2s ease;
}

/* THE RELATABLE HOVER EFFECT (Pink Glow) */
.dropdown-content li a:hover {
    background-color: rgba(255, 0, 189, 0.1); /* Subtle Pink tint */
    color: #ff00bd; /* Neon Pink Text */
    padding-left: 25px; /* Subtle slide-to-right effect */
}

/* Icon Color adjustment */
.dropdown-content li a .material-icons-outlined {
    color: #00d4ff; /* Icons stay blue by default */
    margin-right: 10px;
}

.dropdown-content li a:hover .material-icons-outlined {
    color: #ff00bd; /* Icons turn pink on hover */
}
/* 1. Hide Hamburger on Desktop */
.menu-toggle {
    display: none;
    color: #00d4ff; /* Electric Blue */
    cursor: pointer;
    font-size: 30px;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block; /* Show Hamburger */
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%; /* Hidden off-screen to the right */
        height: 100vh;
        width: 280px;
        background-color: #1a1a1a; /* Match our dark charcoal */
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 20px;
        transition: 0.4s ease-in-out;
        box-shadow: -5px 0 15px rgba(0,0,0,0.5);
        z-index: 999;
    }

    /* When menu is active/open */
    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        margin: 15px 0;
        width: 100%;
    }

    /* Make dropdowns stay open or stack on mobile */
    .dropdown-content {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: transparent;
        box-shadow: none;
        padding-left: 20px;
        border-top: none;
        display: none; /* We will toggle this with JS */
    }

    .dropdown.open .dropdown-content {
        display: block;
    }
}
@media (max-width: 768px) {
    /* Hide sub-menus by default on mobile */
    .nav-links .dropdown-content {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-out;
        display: block; /* Overriding the desktop display: none */
        padding: 0 20px;
        border-left: 2px solid #00d4ff; /* Blue accent line for the sub-menu */
        margin-left: 10px;
    }

    /* Show sub-menu when the 'open' class is added via JS */
    .nav-links .dropdown.open .dropdown-content {
        max-height: 500px; /* Big enough to show all items */
        padding: 10px 20px;
    }

    /* Rotate the arrow ▾ when open */
    .dropdown.open .dropbtn {
        color: #ff00bd; /* Turn pink when active */
    }
}
.social-icons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-icons a {
    display: flex;
    align-items: center;
    gap: 10px; /* Space between icon and text */
    color: #999;
    text-decoration: none;
    font-size: 0.95rem;
    transition: 0.3s ease;
}

/* Individual Brand Colors on Hover */
.social-icons a:hover .fa-facebook { color: #1877F2; }
.social-icons a:hover .fa-instagram { color: #E4405F; }
.social-icons a:hover .fa-tiktok { color: #000000; background: white; border-radius: 4px; }
.social-icons a:hover .fa-youtube { color: #FF0000; }

/* General Text Hover */
.social-icons a:hover {
    color: var(--primary-white);
    transform: translateX(5px);
}
.featured-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Forces exactly 3 across on desktop */
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .featured-grid {
        grid-template-columns: 1fr; /* Stacks them on mobile */
    }
}

.badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--gemini-gradient);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: bold;
    z-index: 2;
}
.cart-container {
    max-width: 800px;
    margin: 100px auto;
    padding: 20px;
    color: rgb(3, 3, 3);
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
}

.cart-item img {
    border-radius: 4px;
    background: white; /* Helps thumbnails pop */
}

.item-info h4 {
    margin: 0 0 5px 0;
    font-size: 1.1rem;
}

.remove-btn {
    margin-left: auto;
    background: none;
    border: none;
    color: #ff4757;
    cursor: pointer;
    font-size: 0.9rem;
}

.cart-summary {
    text-align: right;
    margin-top: 30px;
    padding: 20px;
    border-top: 2px solid #333;
}

.checkout-btn {
    background: #00ff88; /* A "Go" color for checkout */
    color: #000;
    padding: 15px 40px;
    font-size: 1.1rem;
    border-radius: 30px;
    border: none;
    font-weight: bold;
    cursor: pointer;
    margin-top: 15px;
}
/* Container for Price and Button */
.card-actions {
    display: flex;
    flex-direction: column; 
    align-items: center;    
    gap: 8px;              
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1); /* Subtle divider */
}

/* Big, bold Price in White */
.price-tag {
    font-size: 1.6rem;      
    color: #ffffff;         
    font-weight: 900;       /* Maximum weight for impact */
    letter-spacing: -0.5px;
    margin-bottom: 5px;
}

/* Brand-Consistent Button */
.buy-btn {
    width: 100%;            
    background-color: #ffffff;
    color: #000000;
    padding: 14px;
    border: 2px solid #ffffff;
    border-radius: 0;        /* Sharp corners often look more "Logo-like" */
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Hover effect: Inverts the colors */
.buy-btn:hover {
    background-color: transparent;
    color: #ffffff;
    transform: translateY(-2px);
}

.buy-btn:active {
    transform: translateY(0);
}
#cart-count {
    background-color: #ffffff; 
    color: #000000;
    padding: 2px 7px;
    border-radius: 50%;
    font-size: 0.7rem;
    font-weight: bold;
    margin-left: 5px;
}
/* Cart Container */
.cart-section {
    padding: 120px 5% 60px; /* Extra top padding for the fixed header */
    max-width: 900px;
    margin: 0 auto;
    color: #fff;
}

.cart-section h2 {
    font-size: 2.5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -1px;
    border-bottom: 2px solid #fff;
    padding-bottom: 10px;
    margin-bottom: 30px;
}

/* Individual Cart Items */
.cart-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.03);
    padding: 20px;
    margin-bottom: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cart-item img {
    background: #fff; /* Contrast for product thumbnails */
    padding: 5px;
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.cart-item h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
}

.cart-item p {
    color: #000000;
    margin: 5px 0 0;
}

/* Remove Button - Minimalist Style */
.remove-btn {
    background: none;
    border: none;
    color: #888;
    text-transform: uppercase;
    font-size: 0.7rem;
    font-weight: bold;
    letter-spacing: 1px;
    cursor: pointer;
    transition: color 0.2s;
}

.remove-btn:hover {
    color: #fff;
    text-decoration: underline;
}

/* Summary and Checkout */
/* Container to center everything at the bottom of the cart */
#cart-total {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;    /* Horizontal centering */
    text-align: center;     /* Center the text itself */
    gap: 20px;
}

#cart-total h3 {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 20px;
}

/* The Gradient Checkout Button */
.checkout-btn {
    display: block;
    width: 100%;
    max-width: 400px;
    padding: 18px 0;
    font-size: 1.2rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: none;
    cursor: pointer;
    color: #ffffff;
    /* Your specific gradient */
    background: linear-gradient(45deg, #ff00bd, #00d4ff);
    background-size: 200% auto;
    transition: 0.4s;
    box-shadow: 0 4px 15px rgba(255, 0, 189, 0.3);
}

.checkout-btn:hover {
    background-position: right center; /* Moves the gradient on hover */
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 212, 255, 0.4);
}

.checkout-btn:active {
    transform: scale(0.98);
    filter: brightness(1.2);
}

/* Add a small 'Secure Checkout' note below the button */
#cart-total::after {
    content: "🔒 Secure SSL Encrypted Checkout";
    display: block;
    font-size: 0.7rem;
    color: #666;
    margin-top: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.shipping-container {
    background: #111;
    padding: 30px;
    border-radius: 12px;
    margin: 40px 0;
    border: 1px solid #333;
}

.address-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin: 20px 0;
}

.address-grid input, .address-grid select {
    padding: 12px;
    background: #222;
    border: 1px solid #444;
    color: white;
    border-radius: 4px;
}

.save-option {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 0.85rem;
    color: #888;
}

.update-btn {
    width: 100%;
    padding: 12px;
    background: transparent;
    border: 1px solid #00d4ff;
    color: #00d4ff;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.update-btn:hover {
    background: #00d4ff;
    color: black;
}

.fee-breakdown {
    width: 100%;
    max-width: 400px;
    margin-bottom: 20px;
}

.fee-breakdown p {
    display: flex;
    justify-content: space-between;
    color: #aaa;
    margin: 5px 0;
}

.grand-total {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(45deg, #ff00bd, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.cart-container {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 5%;
}

@media (max-width: 900px) {
    .cart-container { grid-template-columns: 1fr; }
}

.cart-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 30px;
    border-bottom: 4px solid #000;
    padding-bottom: 10px;
}

/* Item Cards */
.cart-item {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
    align-items: center;
}

.cart-item img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    background: #f9f9f9;
    border-radius: 8px;
}

.item-info h4 { font-size: 1.2rem; margin-bottom: 5px; }
.remove-link {
    color: #ff4444;
    font-size: 0.8rem;
    cursor: pointer;
    text-decoration: underline;
    background: none;
    border: none;
    padding: 0;
}

/* Summary Card */
.summary-card {
    background: #fbfbfb;
    padding: 30px;
    border-radius: 15px;
    position: sticky;
    top: 20px;
    border: 1px solid #eee;
}

.fee-row {
    display: flex;
    justify-content: space-between;
    margin: 15px 0;
    font-weight: 500;
}

.shipping-form input, .shipping-form select {
    width: 100%;
    padding: 12px;
    margin: 8px 0;
    border: 1px solid #ddd;
    border-radius: 6px;
}

.input-row { display: flex; gap: 10px; }

.calculate-btn {
    width: 100%;
    padding: 12px;
    margin-top: 10px;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
}

.grand-total-row {
    font-size: 1.5rem;
    font-weight: 900;
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
}

.checkout-btn-main {
    width: 100%;
    padding: 20px;
    margin-top: 20px;
    background: linear-gradient(45deg, #ff00bd, #00d4ff);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 900;
    font-size: 1.1rem;
    cursor: pointer;
    transition: transform 0.2s;
}

.checkout-btn-main:disabled { opacity: 0.5; cursor: not-allowed; }
.checkout-btn-main:hover:not(:disabled) { transform: scale(1.02); }

.grand-total-row {
    font-size: 1.6rem;
    font-weight: 900;
    margin-top: 25px;
    padding-top: 15px;
    border-top: 2px solid #000;
    display: flex;
    justify-content: space-between;
    color: #000;
}

#grand-total-val {
    /* Optional: give the final number the GEMNIO gradient effect */
    background: linear-gradient(45deg, #ff00bd, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.fee-row span:last-child {
    font-weight: bold;
    color: #333;
}
.grand-total-row {
    font-size: 1.8rem;
    font-weight: 900;
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid #000;
}


.fee-row {
    display: flex;
    justify-content: space-between;
    margin: 10px 0;
    color: #555;
    font-size: 1.1rem;
}

/* --- Product Card & Footer Styling --- */
.product-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 10px;
    gap: 10px;
    width: 100%;
}





/* Branded Size Dropdown */


.full-width {
    width: 100%;
}

.loader-text, .error-text, .empty-text {
    color: white;
    text-align: center;
    width: 100%;
    padding: 20px;
}

/* --- Cart Page Styling --- */
.cart-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    border-bottom: 1px solid #333;
    padding-bottom: 15px;
}

.cart-item img {
    width: 80px;
    border-radius: 5px;
}

.cart-item-info h4 {
    color: white;
    margin: 0;
}

.cart-item-size {
    color: #4285F4; 
    margin: 5px 0;
    font-size: 0.9rem;
}

.cart-item-details {
    color: #aaa;
    margin: 0;
}

/* --- Branded Size Dropdown --- */
.size-label {
    color: #0a8fa7;
    font-size: 0.8rem;
    align-self: flex-start;
    margin-bottom: 2px;
}



.size-select:focus {
    border-color: #ffffff;
}

/* --- Cart/Bag Item Styling --- */
.cart-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 15px 0;
    border-bottom: 1px solid #333;
}

.cart-item img {
    width: 90px;
    border-radius: 8px;
    object-fit: cover;
}

.item-info {
    flex-grow: 1;
}

.item-info h4 {
    color: white;
    font-size: 1.1rem;
    margin: 0 0 5px 0;
}

.item-size-tag {
    color: #ffcc00; /* Gold Size Text */
    font-weight: bold;
    font-size: 0.9rem;
    margin: 0 0 5px 0;
}

.item-price-qty {
    color: #aaa;
    font-size: 0.9rem;
    margin: 0;
}

.remove-btn {
    background: none;
    border: none;
    color: #ff4444;
    cursor: pointer;
    transition: 0.3s;
}

.remove-btn:hover {
    color: white;
}
/* Branded Variables */
:root {
    --gemini-gradient: linear-gradient(45deg, #4285F4, #9b72cb, #d96570, #FBBC05);
    --banner-gold: #c5a059;
    --dark-bg: #0a0a0a;
}

/* Gradient accents for buttons and headers */
.buy-btn, .checkout-btn-main, .calculate-btn {
    background: var(--gemini-gradient) !important;
    border: none !important;
    color: white !important;
    font-weight: bold;
    text-transform: uppercase;
    transition: transform 0.2s;
}

.buy-btn:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

/* Price & Size Styling */
.product-price {
    color: var(--banner-gold) !important; /* Gold from your banner */
    font-size: 1.4rem;
    font-weight: 900;
}



/* Cart Item Fixes */
.item-size-tag { color: #9b72cb; } /* Purple from gradient for contrast */

/* --- Brand Variables --- */
:root {
    --gemini-gradient: linear-gradient(45deg, #4285F4, #9b72cb, #d96570, #FBBC05);
    --gold: #c5a059; /* Sampled from common gold banners */
    --dark: #000000;
    --light: #ffffff;
}

/* --- Buttons --- */
.buy-btn, .gemini-btn {
    background: var(--gemini-gradient) !important;
    border: none;
    color: white;
    padding: 12px 24px;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 4px;
    transition: 0.3s;
}

.buy-btn:hover {
    filter: brightness(1.2);
    transform: translateY(-2px);
}

/* --- Product Cards --- */
.product-card {
    background-color: rgb(0, 0, 0); /* Black with adjustable transparency */
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid transparent; /* Keeps card size stable on hover */
    transition: all 0.3s ease;
}

/* Hover Effect: Transparent Background + Gemini Blue Border */
.product-card:hover {
    background-color: rgba(0, 0, 0, 0.2); /* Becomes more transparent */
    border-color: var(--gemini-blue);   /* Lights up in Gemini Blue */
    transform: translateY(-5px);        /* Slight lift effect */
    box-shadow: 0 10px 20px rgba(217, 101, 112, 0.2); /* Soft blue glow */
}



/* --- Product Detail Page Layout --- */

#main-image {
    width: 100%;
    border-radius: 8px;
    background: #1a1a1a;
}

.p-price {
    font-size: 2rem;
    color: var(--gold);
    margin: 10px 0;
}

.size-select {
    width: 100%;
    padding: 12px;
    background: #0a8fa7;
    color: white;
    border: 2px solid var(--gemini-blue);
    margin: 10px 0;
}

/* --- Cart/Bag Logic --- */
.item-size-tag { color: #9b72cb; font-weight: bold; }
.item-price-qty { color: var(--gold); }

.buy-btn {
    background: linear-gradient(45deg, #4285F4, #9b72cb, #d96570, #FBBC05) !important;
    border: none;
    color: white;
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
}


/* --- Product Page Specifics --- */
.product-container {
    max-width: 1100px;
    margin: 120px auto 50px;
    padding: 0 20px;
}

.product-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

/* --- Styled Dropdown --- */
.styled-select {
    width: 100%;
    padding: 15px;
    background: #1a1a1a;
    color: white;
    border: 2px solid #333;
    border-radius: 8px;
    font-size: 1rem;
    margin: 10px 0 20px;
    appearance: none; /* Removes default arrow */
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3e%3cpath d='M7 10l5 5 5-5z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 20px;
    cursor: pointer;
    transition: border-color 0.3s;
}

.styled-select:focus {
    border-color: #9b72cb; /* Purple from your gradient */
    outline: none;
}

/* --- Loader Animation --- */
.loader {
    width: 100%;
    height: 400px;
    background: linear-gradient(90deg, #111 25%, #222 50%, #111 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
    border-radius: 12px;
}

@keyframes loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Gemini Button */
.gemini-btn {
    background: linear-gradient(45deg, #4285F4, #9b72cb, #d96570, #FBBC05) !important;
    width: 100%;
    padding: 18px;
    font-size: 1.1rem;
}
/* --- Dropdown Styling --- */
.styled-select {
    width: 100%;
    padding: 12px 15px;
    background-color: #555658;
    color: #fff;
    border: 1px solid #FBBC05; /* Gold border */
    border-radius: 4px;
    margin: 10px 0 25px;
    font-size: 1rem;
    cursor: pointer;
    background-image: linear-gradient(45deg, transparent 50%, #FBBC05 50%), 
                      linear-gradient(135deg, #FBBC05 50%, transparent 50%);
    background-position: calc(100% - 20px) calc(1em + 2px), calc(100% - 15px) calc(1em + 2px);
    background-size: 5px 5px, 5px 5px;
    background-repeat: no-repeat;
    appearance: none;
}

/* --- Skeleton Loading Effect --- */
.skeleton {
    width: 100%;
    height: 500px;
    background: #1a1a1a;
    background-image: linear-gradient(90deg, #1a1a1a 0px, #2a2a2a 40px, #1a1a1a 80px);
    background-size: 600px;
    animation: shine 1.6s infinite linear;
}

@keyframes shine {
    0% { background-position: -100px; }
    40%, 100% { background-position: 500px; }
}

/* --- Gemini Button Overrides --- */
.gemini-btn {
    background: var(--gemini-gradient) !important;
    letter-spacing: 1px;
    transition: 0.3s ease;
}

.gemini-btn:hover {
    box-shadow: 0 0 15px rgba(155, 114, 203, 0.4);
    transform: translateY(-2px);
}
.home-section {
    padding: 60px 5%;
    max-width: 1200px;
    margin: 0 auto;
    
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 30px;
    text-align: center;
    
    
    /* 1. The Gradient Text */
    background: var(--gemini-gradient);
   

    /* 2. The Adjustable Black Background */
    /* Adjust the 0.7 (70%) to change the fading of the black box */
   background-color: rgba(0, 0, 0, 0.9);
   
    
    /* 3. Positioning & Padding */
    display: table;           /* Makes background wrap only the text */
    margin: 0 auto 30px;      /* Centers the box and adds bottom spacing */
    padding: 10px 25px;       /* Spacing inside the black box */
    border-radius: 8px;       /* Optional: softens the corners */
    
    /* 4. Shadow for extra depth */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

/* Ensure the home grid only shows 3 items side-by-side */
#latest-grid, #top-grid {
    grid-template-columns: repeat(3, 1fr);
    
}

@media (max-width: 768px) {
    #latest-grid, #top-grid {
        grid-template-columns: 1fr;
    }
}

.swatch-grid {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.swatch {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid #333;
    transition: all 0.2s ease;
    background-color: #555; /* Fallback color */
}

/* Hover effect with Gemini Blue */
.swatch:hover {
    transform: scale(1.15);
    border-color: #4285F4;
}

/* Active state with Glow */
.swatch.active {
    border-color: #fff;
    box-shadow: 0 0 10px rgba(66, 133, 244, 0.6);
    transform: scale(1.1);
}

/* If the color is white, darken the border so it's visible */
.swatch[style*="white" i] {
    border-color: #666;
}