* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
    color: white;
}

/* Navigation Responsive Fixes */
nav {
    width: 100%;
    height: 10vh;
    background-color: transparent;
    z-index: 2;
    color: white;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    top: 0;
    left: 0;
}

.quick-links ul {
    display: flex;
    gap: 20px;
    font-size: 20px;
    text-transform: uppercase;
}

.logo {
    font-size: 70px;
    font-weight: bold;
}

nav:hover {
    transition: all .5s ease-in-out;
    background-color: rgb(255, 255, 255);
    color: black;
}

nav:hover a {
    transition: all .5s ease-in-out;
    color: black;
}

nav:hover svg {
    transition: all .5s ease-in-out;
    filter: invert(100%);
}

.nav-background {
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url(https://rothys.com/cdn/shop/files/11.06_HP_Desktop_1_D4TBN9PSvQ_4c0c6e48-a2f0-4028-bb30-455443ddea78.gif?v=1762279939&width=1920);
}

.profile {
    display: flex;
    gap: 20px;
    align-items: center;
}

/* Hero Section Responsive */
.hero-section {
    width: 100%;
    margin-top: 100px;
}

.hero-top-cards {
    display: flex;
    justify-content: center;
    gap: 2vw;
    padding: 3vh;
    flex-wrap: wrap;
}

.top-card {
    border: 2px solid black;
    text-transform: uppercase;
    font-size: 18px;
    letter-spacing: 2px;
    padding: 15px 25px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    max-width: 300px;
    flex: 1;
    min-width: 200px;
}

.top-card:hover {
    background-color: #000;
    color: white;
}

.hero-image-cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 20px;
    gap: 20px;
}

.image-card {
    display: flex;
    flex-direction: column;
    text-align: center;
    text-transform: uppercase;
    font-size: 20px;
    width: 30%;
    min-width: 300px;
}

.image-card p {
    margin-top: 20px;
    font-weight: 600;
}

.image-card img {
    width: 100%;
    height: 60vh;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.image-card img:hover {
    transform: scale(1.02);
}

/* Product Grid Responsive Fix */
.wrap {
    width: 100%;
    overflow-x: hidden;
    padding: 20px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    padding: 20px;
    background: #fff;
    max-width: 1400px;
    margin: 0 auto;
}

.card {
    display: flex;
    flex-direction: column;
    padding: 16px;
    position: relative;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.card:hover {
    background: #fafafa;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
    min-height: 28px;
}

.badge {
    display: inline-flex;
    align-items: center;
    height: 24px;
    padding: 0 10px;
    font-size: 11px;
    letter-spacing: .06em;
    text-transform: uppercase;
    border-radius: 4px;
    background: #000;
    color: white;
    font-weight: 700;
}

.wish-btn {
    appearance: none;
    border: 0;
    background: transparent;
    width: 28px;
    height: 28px;
    padding: 0;
    display: grid;
    place-items: center;
    cursor: pointer;
    color: #7a8499;
}

.wish-btn:hover {
    color: #dc2626;
}

/* Product Images Container */
.items {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    cursor: pointer;
    margin-bottom: 15px;
}

.items img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

.items .default-image {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 1;
}

.items .hover-image {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

.items:hover .default-image {
    opacity: 0;
}

.items:hover .hover-image {
    opacity: 1;
}

/* Info Section */
.info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 10px;
}

.title-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 8px;
}

.title {
    font-size: 16px;
    line-height: 1.3;
    font-weight: 600;
    margin: 0;
    color: #1f2937;
    flex: 1;
}

.price {
    font-size: 16px;
    font-weight: 600;
    color: #111827;
    white-space: nowrap;
}

.subtitle,
.meta {
    margin: 0;
    font-size: 14px;
    color: #6b7280;
}

/* Footer Styles */
.footer {
    background-color: #000;
    color: #fff;
    padding: 60px 0 20px;
    margin-top: 80px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-section {
    margin-bottom: 30px;
}

.footer-heading {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    font-weight: 600;
    color: #fff;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #bbb;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid #333;
    margin-top: 60px;
    padding-top: 30px;
}

.footer-bottom-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.copyright {
    color: #bbb;
    font-size: 14px;
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: 30px;
}

.legal-link {
    color: #bbb;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.legal-link:hover {
    color: #fff;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 60px;
    }
    
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-legal {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    /* Navigation */
    nav {
        padding: 10px 15px;
        height: auto;
        flex-wrap: wrap;
    }
    
    .logo {
        font-size: 40px;
        order: 1;
        flex: 1;
    }
    
    .quick-links {
        order: 3;
        width: 100%;
        margin-top: 10px;
    }
    
    .quick-links ul {
        justify-content: center;
        font-size: 14px;
        gap: 15px;
        flex-wrap: wrap;
    }
    
    .profile {
        order: 2;
        gap: 15px;
    }
    
    .profile svg {
        width: 28px;
        height: 28px;
    }
    
    /* Hero Section */
    .hero-section {
        margin-top: 120px;
    }
    
    .hero-top-cards {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        padding: 20px;
    }
    
    .top-card {
        width: 100%;
        max-width: 400px;
        font-size: 16px;
        padding: 12px 20px;
    }
    
    .hero-image-cards {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    
    .image-card {
        width: 100%;
        max-width: 500px;
    }
    
    .image-card img {
        height: 50vh;
    }
    
    /* Product Grid */
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding: 15px;
    }
    
    .card {
        padding: 12px;
    }
    
    .items {
        height: 250px;
    }
    
    /* Footer */
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-section {
        margin-bottom: 20px;
    }
    
    .footer-heading {
        font-size: 15px;
        margin-bottom: 15px;
    }
    
    .footer-links li {
        margin-bottom: 10px;
    }
    
    .footer-links a {
        font-size: 13px;
    }
    
    .footer-bottom {
        margin-top: 40px;
        padding-top: 20px;
    }
    
    .copyright {
        font-size: 13px;
    }
    
    .legal-link {
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    /* Navigation */
    .logo {
        font-size: 32px;
    }
    
    .quick-links ul {
        font-size: 12px;
        gap: 10px;
    }
    
    .profile {
        gap: 10px;
    }
    
    .profile svg {
        width: 24px;
        height: 24px;
    }
    
    /* Hero Section */
    .hero-top-cards {
        padding: 15px;
    }
    
    .top-card {
        font-size: 14px;
        padding: 10px 15px;
    }
    
    .image-card {
        min-width: unset;
    }
    
    .image-card img {
        height: 40vh;
    }
    
    /* Product Grid */
    .product-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .items {
        height: 280px;
    }
    
    .title {
        font-size: 15px;
    }
    
    .price {
        font-size: 15px;
    }
    
    /* Footer */
    .footer {
        padding: 30px 0 15px;
    }
    
    .footer-content {
        padding: 0 15px;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .footer-bottom-content {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        margin-top: 150px;
    }
    
    .quick-links ul {
        font-size: 11px;
        gap: 8px;
    }
    
    .image-card p {
        font-size: 18px;
    }
    
    .items {
        height: 250px;
    }
    
    .product-grid {
        padding: 10px;
        gap: 15px;
    }
    
    .card {
        padding: 10px;
    }
}