* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    overflow-x: hidden;
}

.navbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: transparent;
    z-index: 100;
}

.nav-left {
    flex: 1;
    position: relative;
}

.logo {
    height: 50px;
    width: auto;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.logo-shift {
    transform: translateX(100px);
}

.menu-dropdown {
    position: absolute;
    top: 60px;
    left: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
}

.menu-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.menu-item {
    font-family: 'Bad Script', cursive;
    text-decoration: none;
    color: #ffffff;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.menu-logo {
    height: 30px;
    width: auto;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.menu-item:hover .menu-logo {
    opacity: 1;
}

.submenu {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-left: 8px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.3s ease, opacity 0.3s ease;
}

.submenu-visible {
    max-height: 200px;
    opacity: 1;
}

.submenu-item {
    font-family: 'Inter', sans-serif;
    text-decoration: none;
    color: #ffffff;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.submenu-logo {
    height: 20px;
    width: auto;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.submenu-item:hover .submenu-logo {
    opacity: 1;
}

.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: visible;
    margin-bottom: 0;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.brand-name-shirts {
    position: absolute;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%) rotate(-5deg);
    font-family: 'Bad Script', cursive;
    font-size: 2.5rem;
    font-weight: normal;
    color: #ffffff;
    z-index: 10;
}

.logo-strip {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    transform: translateY(50%);
    padding: 0;
    z-index: 10;
    gap: 0;
}

.strip-logo {
    height: 40px;
    width: auto;
    flex-shrink: 0;
    margin: -8px;
    display: block;
}

.logo-strip-fixed {
    position: static;
    transform: translateY(-50%);
    margin-bottom: 2rem;
}

.products-section {
    position: relative;
    min-height: 100vh;
    background-image: url('https://s3.amazonaws.com/gallea.arts.bucket/3c666e00-a3cc-11ec-bffa-cbdce53afff6.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    padding: 4rem 2rem;
    padding-top: 2rem;
    margin-top: 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 4rem auto 0 auto;
}

.product-item {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.product-item img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: contain;
    transition: transform 0.3s ease;
    border-radius: 8px;
}

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

.color-variants {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
    padding: 0;
}

.color-dot {
    width: 35px;
    height: 35px;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.color-dot:hover {
    transform: scale(1.2);
}

.product-info {
    text-align: center;
    margin-top: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-item:hover .product-info {
    opacity: 1;
}

.product-name {
    font-family: 'Bad Script', cursive;
    font-size: 1.5rem;
    font-weight: normal;
    color: #000000;
    margin-bottom: 0.25rem;
}

.product-price {
    font-family: 'Bad Script', cursive;
    font-size: 1.25rem;
    font-weight: normal;
    color: #000000;
}
