:root {
    --color-navy: #0A0E27;
    --color-gold: #D4AF37;
    --color-white: #FFFFFF;
    --color-off-white: #F5F5F5;
    --color-gray: #8B8B8B;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--color-navy);
    color: var(--color-white);
}

.bg-navy {
    background-color: var(--color-navy);
}

.text-gold {
    color: var(--color-gold);
}

.font-display {
    font-family: 'Bebas Neue', sans-serif;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--color-navy);
}

::-webkit-scrollbar-thumb {
    background: var(--color-gold);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #c9a030;
}

/* Selection color */
::selection {
    background: var(--color-gold);
    color: var(--color-navy);
}

/* Base Styles */
h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--color-white);
    font-family: 'Bebas Neue', sans-serif;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

/* Utilities */
.text-white-80 {
    color: rgba(255, 255, 255, 0.8);
}

.text-white-70 {
    color: rgba(255, 255, 255, 0.7);
}

.text-white-50 {
    color: rgba(255, 255, 255, 0.5);
}

.bg-white-5 {
    background-color: rgba(255, 255, 255, 0.05);
}

.border-white-10 {
    border-color: rgba(255, 255, 255, 0.1) !important;
}

.hover-gold:hover {
    color: var(--color-gold) !important;
}

.text-gold {
    color: var(--color-gold);
}

.tracking-wider {
    letter-spacing: 0.05em;
}

.tracking-widest {
    letter-spacing: 0.1em;
}

.tracking-expanded {
    letter-spacing: 0.2em;
}

.uppercase {
    text-transform: uppercase;
}

.object-cover {
    object-fit: cover;
}

.inset-0 {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.z-10 {
    z-index: 10;
}

.w-4 {
    width: 1rem;
}

.h-4 {
    height: 1rem;
}

.w-6 {
    width: 1.5rem;
}

.h-6 {
    height: 1.5rem;
}

.w-8 {
    width: 2rem;
}

.h-8 {
    height: 2rem;
}

.w-100 {
    width: 100%;
}

.h-100 {
    height: 100vh;
}

/* Button Styles */
.btn-gold {
    background-color: var(--color-gold);
    color: var(--color-navy);
    border: 1px solid var(--color-gold);
    transition: all 0.3s ease;
}

.btn-gold:hover {
    background-color: #c9a030;
    border-color: #c9a030;
    color: var(--color-navy);
}

.hover-gold-border:hover {
    border-color: var(--color-gold);
    color: var(--color-navy);
    background-color: var(--color-gold) !important;
}

/* Navbar */
.navbar {
    transition: background-color 0.3s ease, backdrop-filter 0.3s ease;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.navbar.scrolled {
    background-color: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.nav-link {
    position: relative;
}

/* Nathan & Elbi Header Styles */
.nathan-elbi-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.5s ease;
    background-color: transparent;
}

.nathan-elbi-header.scrolled {
    background-color: rgba(10, 10, 26, 0.95);
    backdrop-filter: blur(10px);
}

.nathan-elbi-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

@media (min-width: 640px) {
    .nathan-elbi-container {
        padding: 0 24px;
    }
}

@media (min-width: 1024px) {
    .nathan-elbi-container {
        padding: 0 32px;
    }
}

.nathan-elbi-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.nathan-elbi-logo {
    flex-shrink: 0;
}

.nathan-elbi-logo-link {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 20px;
    letter-spacing: 0.05em;
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

@media (min-width: 640px) {
    .nathan-elbi-logo-link {
        font-size: 24px;
    }
}

.nathan-elbi-logo-link:hover {
    color: #D4AF37;
}

/* Custom logo image styling */
.nathan-elbi-logo-link .custom-logo {
    max-height: 40px;
    width: auto;
}

/* Desktop navigation */
.nathan-elbi-desktop-nav {
    display: none;
    list-style: none;
    margin: 0;
    padding: 0;
}

@media (min-width: 1024px) {
    .nathan-elbi-desktop-nav {
        display: flex;
        align-items: center;
        gap: 32px;
    }
}

.nathan-elbi-desktop-nav li {
    margin: 0;
    padding: 0;
}

.nathan-elbi-nav-link {
    position: relative;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.nathan-elbi-nav-link:hover,
.nathan-elbi-nav-link:focus {
    color: #D4AF37;
    outline: none;
}

.nathan-elbi-nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #D4AF37;
    transition: all 0.3s ease;
}

.nathan-elbi-nav-link:hover::after,
.nathan-elbi-nav-link.current-menu-item::after {
    width: 100%;
}

.nathan-elbi-nav-link.current-menu-item {
    color: #D4AF37;
}

/* Desktop actions (cart, social icons) */
.nathan-elbi-desktop-actions {
    display: none;
}

@media (min-width: 1024px) {
    .nathan-elbi-desktop-actions {
        display: flex;
        align-items: center;
        gap: 16px;
    }
}

.nathan-elbi-cart-btn {
    position: relative;
    color: rgba(255, 255, 255, 0.8);
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    transition: color 0.3s ease;
}

.nathan-elbi-cart-btn:hover {
    color: #D4AF37;
}

.nathan-elbi-cart-btn:focus {
    outline: none;
    color: #D4AF37;
}

.nathan-elbi-divider {
    width: 1px;
    height: 20px;
    background-color: rgba(255, 255, 255, 0.2);
}

.nathan-elbi-social-link {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.nathan-elbi-social-link:hover {
    color: #D4AF37;
}

.nathan-elbi-social-link:focus {
    outline: none;
    color: #D4AF37;
}

/* Mobile menu button */
.nathan-elbi-mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    color: white;
    padding: 8px;
    cursor: pointer;
    transition: color 0.3s ease;
}

@media (min-width: 1024px) {
    .nathan-elbi-mobile-menu-btn {
        display: none;
    }
}

.nathan-elbi-mobile-menu-btn:hover {
    color: #D4AF37;
}

/* Mobile menu overlay */
.nathan-elbi-mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(10, 10, 26, 0.95);
    backdrop-filter: blur(10px);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.nathan-elbi-mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.nathan-elbi-mobile-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    margin-bottom: 40px;
}

.nathan-elbi-mobile-nav-link {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.nathan-elbi-mobile-nav-link:hover,
.nathan-elbi-mobile-nav-link.current-menu-item {
    color: #D4AF37;
}

.nathan-elbi-mobile-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
}

.nathan-elbi-close-menu-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 8px;
    transition: color 0.3s ease;
}

.nathan-elbi-close-menu-btn:hover {
    color: #D4AF37;
}

/* Icons */
.nathan-elbi-icon {
    width: 20px;
    height: 20px;
}

.nathan-elbi-social-icon {
    width: 18px;
    height: 18px;
}

/* Fix for admin bar */
.admin-bar .nathan-elbi-header {
    top: 32px;
}

@media screen and (max-width: 782px) {
    .admin-bar .nathan-elbi-header {
        top: 46px;
    }
}

/* Fallback for no JavaScript */
.no-js .nathan-elbi-mobile-menu-btn {
    display: none;
}

.no-js .nathan-elbi-desktop-nav {
    display: flex;
}


@media (min-width: 768px) {
    .nav-link::after {
        content: '';
        position: absolute;
        bottom: -4px;
        left: 0;
        width: 0;
        height: 2px;
        background-color: var(--color-gold);
        transition: width 0.3s ease;
    }

    .nav-link:hover::after {
        width: 100%;
    }
}

@media (max-width: 767.98px) {
    .bg-navy-mobile {
        background-color: rgba(10, 14, 39, 0.98);
        backdrop-filter: blur(10px);
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        padding: 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .navbar-collapse {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        margin-top: 1rem;
    }
}

/* Hero Section */
.hero-title {
    font-size: 3.75rem;
    /* 6xl */
}

@media (min-width: 640px) {
    .hero-title {
        font-size: 6rem;
    }
}

/* 8xl */
@media (min-width: 768px) {
    .hero-title {
        font-size: 8rem;
    }
}

/* 9xl */

.grain-texture {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

.opacity-03 {
    opacity: 0.03;
}


.bg-gradient-overlay {
    background: linear-gradient(to bottom, rgba(10, 14, 39, 0.7), rgba(10, 14, 39, 0.5), rgba(10, 14, 39, 1));
}

.bg-navy-40 {
    background-color: rgba(10, 14, 39, 0.4);
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.2s;
}

.delay-2 {
    transition-delay: 0.4s;
}

.delay-3 {
    transition-delay: 0.6s;
}

.delay-4 {
    transition-delay: 0.8s;
}

.delay-5 {
    transition-delay: 1.2s;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(10px);
    }
}

.bounce-animation.visible {
    animation: bounce 2s infinite ease-in-out;
}

/* DSPLinks Section */
.bg-gradient-dsp {
    background: linear-gradient(to bottom, transparent, rgba(212, 175, 55, 0.05), transparent);
}

.dsp-card:hover {
    transform: scale(1.02);
    border-color: rgba(212, 175, 55, 0.3) !important;
    background-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 30px rgba(var(--dsp-color-rgb), 0.2);
    /* var(--dsp-color) usage via inline style usually works, but for shadow specific rgba might need tweak, simplified here */
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
    /* Fallback */
}

.dsp-card:focus {
    outline: none;
    box-shadow: 0 0 0 2px var(--color-gold);
}

.dsp-glow {
    background: radial-gradient(circle at center, var(--dsp-color), transparent 70%);
    /* Needs opacity 0.1 handled in keyframes or inline opacity */
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
}

.text-white-60 {
    color: rgba(255, 255, 255, 0.6);
}

.group-hover-white:hover {
    color: #fff !important;
}

.dsp-card:hover .group-hover-white {
    color: #fff !important;
}

.dsp-card:hover .dsp-glow {
    opacity: 0.1 !important;
}

/* Visualizer */
.visualizer-bar {
    width: 4px;
    background-color: rgba(212, 175, 55, 0.6);
    border-radius: 9999px;
    animation: visualize 1s ease-in-out infinite;
}

@keyframes visualize {

    0%,
    100% {
        height: 8px;
    }

    50% {
        height: 32px;
    }
}

/* About Section */
.bg-gradient-about {
    background: linear-gradient(to left, rgba(212, 175, 55, 0.05), transparent);
}

.bg-gradient-aspect {
    background: linear-gradient(to top, #0A0E27, transparent, transparent);
}

.gold-30 {
    border-color: rgba(212, 175, 55, 0.3) !important;
}

.bg-gold-10 {
    background-color: rgba(212, 175, 55, 0.1);
}

.w-24 {
    width: 6rem;
}

.h-24 {
    height: 6rem;
}

.blur-2xl {
    filter: blur(40px);
}

.z-n1 {
    z-index: -1;
}

.frame-offset {
    bottom: -1rem;
    right: -1rem;
}

.accent-offset {
    top: -1.5rem;
    left: -1.5rem;
}

@keyframes floating {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }
}

.floating-animation {
    animation: floating 4s infinite ease-in-out;
}

/* Social Media Section */
.grid-pattern {
    background-image: radial-gradient(circle at 2px 2px, white 1px, transparent 0);
    background-size: 40px 40px;
}

.opacity-05 {
    opacity: 0.05;
}

.hover-gold-glow:hover {
    color: var(--color-white);
    background-color: var(--color-gold);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
    border-color: var(--color-gold) !important;
}

.hover-border-gold:hover {
    border-color: var(--color-gold) !important;
}


/* Merch Section */
.bg-gradient-merch {
    background: linear-gradient(to bottom, rgba(212, 175, 55, 0.05), transparent, transparent);
}

.group-hover-scale:hover {
    transform: scale(1.1);
}

.bg-navy-60 {
    background-color: rgba(10, 14, 39, 0.6);
    backdrop-filter: blur(4px);
}

.group:hover .group-hover-opacity-100 {
    opacity: 1;
}

.group:hover .group-hover-translate-y-0 {
    transform: translateY(0);
}

.delay-75 {
    transition-delay: 75ms;
}

.delay-100 {
    transition-delay: 100ms;
}

.transition-transform {
    transition-property: transform;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.duration-300 {
    transition-duration: 300ms;
}

.duration-500 {
    transition-duration: 500ms;
}

.translate-y-4 {
    transform: translateY(1rem);
}

/* Contact Section */
.bg-gradient-contact {
    background: linear-gradient(to top right, rgba(212, 175, 55, 0.05), transparent);
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.form-control:focus {
	color: black !important;
}

.focus-gold:focus {
    border-color: var(--color-gold) !important;
    box-shadow: 0 0 0 0.25rem rgba(212, 175, 55, 0.25);
    background-color: rgba(255, 255, 255, 0.05);
    /* Keep bg same */
    color: white;
}

.form-control {
    color: white;
}

/* Footer */
.bg-black {
    background-color: #000;
}

.border-top {
    border-top-width: 1px !important;
}

.text-white-30 {
    color: rgba(255, 255, 255, 0.3);
}

.text-white-20 {
    color: rgba(255, 255, 255, 0.2);
}

.text-xs {
    font-size: 0.75rem;
}

.w-3 {
    width: 0.75rem;
}

.h-3 {
    height: 0.75rem;
}

.w-16 {
    width: 4rem;
}

.h-16 {
    height: 4rem;
}

.hover-white:hover {
    color: #fff;
}



/* new style section */
/* Section Common Styles */
.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 48px;
    color: white;
    letter-spacing: 0.05em;
    text-align: center;
    margin-bottom: 24px;
}

@media (min-width: 640px) {
    .section-title {
        font-size: 56px;
    }
}

@media (min-width: 768px) {
    .section-title {
        font-size: 64px;
    }
}

.section-subtitle {
    display: inline-block;
    color: #D4AF37;
    font-size: 14px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

/* Stream Section */
.stream-section {
    position: relative;
    padding: 64px 0;
    background: #0A0E27;
}

@media (min-width: 640px) {
    .stream-section {
        padding: 80px 0;
    }
}

.stream-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .stream-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
    }
}

.album-card {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    background: #1a1a1a;
    min-height: 500px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.album-card:hover {
    transform: translateY(-8px);
}

.album-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.album-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.album-card:hover .album-overlay {
    opacity: 1;
}

.overlay-content {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease 0.1s;
}

.album-card:hover .overlay-content {
    opacity: 1;
    transform: translateY(0);
}

.listen-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 4px;
    transition: all 0.3s ease;
    background: #D4AF37;
    color: #0A0E27;
    padding: 16px 32px;
    font-size: 18px;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    border: none;
    cursor: pointer;
}

.listen-btn:hover {
    background: #c9a030;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
    transform: scale(1.05);
}

.listen-btn:focus {
    outline: none;
    box-shadow: 0 0 0 2px #D4AF37, 0 0 0 4px rgba(212, 175, 55, 0.3);
}

.play-icon {
    width: 20px;
    height: 20px;
}

/* About Section */
.about-section {
    position: relative;
    padding: 96px 0;
    background: linear-gradient(to bottom, #0A0E27, #0d1230);
}

@media (min-width: 640px) {
    .about-section {
        padding: 120px 0;
    }
}

.about-container {
    max-width: 900px;
}

.about-content {
    text-align: center;
}

.about-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    line-height: 1.8;
}

.about-text p {
    margin-bottom: 24px;
}

.about-text p:last-child {
    margin-bottom: 0;
}

/* Social Section */
.social-section {
    position: relative;
    padding: 96px 0;
    background: linear-gradient(to bottom, #0A0E27, #0d1230);
}

@media (min-width: 640px) {
    .social-section {
        padding: 120px 0;
    }
}

.social-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.social-description {
    color: rgba(255, 255, 255, 0.6);
    font-size: 18px;
    margin-bottom: 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 24px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.social-icon:nth-child(1):hover {
    color: #E1306C; /* Instagram pink */
}

.social-icon:nth-child(2):hover {
    color: #FF0000; /* YouTube red */
}

.social-icon:nth-child(3):hover {
    color: #1877F2; /* Facebook blue */
}

.social-icon:focus {
    outline: none;
    box-shadow: 0 0 0 2px #D4AF37, 0 0 0 4px rgba(212, 175, 55, 0.3);
}

.social-svg {
    width: 24px;
    height: 24px;
}

/* Shop Section */
.shop-section {
    position: relative;
    padding: 96px 0;
    background: #0A0E27;
    overflow: hidden;
}

@media (min-width: 640px) {
    .shop-section {
        padding: 120px 0;
    }
}

.shop-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(212, 175, 55, 0.05), transparent, transparent);
    pointer-events: none;
}

.shop-header {
    text-align: center;
    margin-bottom: 64px;
}

.bag-icon {
    margin-right: 8px;
    vertical-align: middle;
}

.shop-description {
    color: rgba(255, 255, 255, 0.6);
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}

.products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 48px;
}

@media (min-width: 640px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
}

@media (min-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
    }
}

.product-card {
    opacity: 1;
    transform: none;
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-8px);
}

.product-item {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.product-item:hover {
    border-color: rgba(212, 175, 55, 0.3);
}

.product-image {
    position: relative;
    aspect-ratio: 1/1;
    overflow: hidden;
    background: #0A0E27;
}

.product-image img{
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: transform 0.3s ease !important;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-item:hover .product-img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(10, 14, 39, 0.8), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.product-info {
    padding: 20px;
}

.product-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 24px;
    color: white;
    letter-spacing: 0.03em;
    margin-bottom: 8px;
}

.product-price {
    color: #D4AF37;
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 20px;
}

.add-to-cart-btn {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #D4AF37;
    color: #D4AF37;
    background: transparent;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.add-to-cart-btn:hover {
    background: #D4AF37;
    color: #0A0E27;
}

.add-to-cart-btn:focus {
    outline: none;
    box-shadow: 0 0 0 2px #D4AF37, 0 0 0 4px rgba(212, 175, 55, 0.3);
}

.shop-cta {
    text-align: center;
}

.shop-all-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 4px;
    transition: all 0.3s ease;
    background: transparent;
    border: 2px solid white;
    color: white;
    padding: 16px 32px;
    font-size: 18px;
    text-decoration: none;
}

.shop-all-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.shop-all-btn:focus {
    outline: none;
    box-shadow: 0 0 0 2px #D4AF37, 0 0 0 4px rgba(212, 175, 55, 0.3);
}

/* Accessibility */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Animation Classes for Scroll */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.off-white li a {
    color: #ffffff80 !important;
}

/* 
* adding ajax add to cart button styles
 */

 .ajax-cart-message {
        position: fixed;
        top: 100px;
        right: 20px;
        padding: 15px 20px;
        background: #D4AF37;
        color: #0A0E27;
        border-radius: 4px;
        font-weight: 600;
        z-index: 9999;
        box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        opacity: 0;
        transform: translateX(100%);
        transition: all 0.3s ease;
        max-width: 300px;
    }
    
    .ajax-cart-message.show {
        opacity: 1;
        transform: translateX(0);
    }
    
    .ajax-cart-message.error {
        background: #ff4444;
        color: white;
    }
    
    .add-to-cart-btn.loading {
        position: relative;
        color: transparent !important;
    }
    
    .add-to-cart-btn.loading:after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 20px;
        height: 20px;
        border: 2px solid #0A0E27;
        border-top-color: transparent;
        border-radius: 50%;
        animation: spin 0.8s linear infinite;
    }
    
    @keyframes spin {
        to { transform: translate(-50%, -50%) rotate(360deg); }
    }
    
    /* Update cart count animation */
    .nathan-elbi-cart-btn .cart-count {
        animation: pulse 0.3s ease;
    }
    
    @keyframes pulse {
        0% { transform: scale(1); }
        50% { transform: scale(1.2); }
        100% { transform: scale(1); }
    }