 /* Reset and Base Styles */
 * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family:'Audiowide', sans-serif;
    background: #f8f9fa;
    color: #333;
    line-height: 1.6;
}

/* Header Styles */
header {
    height: 11vh;
    background-color: #000;
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    /* border-bottom: 1px solid #eaeaea; */
}

.head {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.title {
    font-family: 'Audiowide', sans-serif;
    font-size: 2rem;
    font-weight: bolder;
    /* color: #2c3e50; */
    color: white;
    letter-spacing: 1px;
}

/* Desktop Navigation */
nav {
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.two{
    margin-left: 0;
    /* border: 2px solid red; */
}

.two ul, .menu ul, .right ul {
    list-style: none;
    display: flex;
    gap: 25px;
    /* margin: 0;
    padding: 0; */
}

.two ul a, .menu ul a, .right ul a {
    text-decoration: none;
    /* color: #2c3e50; */
    color: white;
    transition: all 0.3s ease-in-out;
    font-size: 0.9rem;
    font-weight: 500;
}

.two ul a:hover, .menu ul a:hover, .right ul a:hover {
    color: #3498db;
}

.menu ul a::before {
    content: "★ ";
    /* color: #3498db; */
    color: white;
    font-size: 0.8rem;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.hamburger span {
    height: 2px;
    width: 25px;
    background: #2c3e50;
    margin-bottom: 5px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: #ffffff;
    z-index: 1000;
    padding: 20px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
}

.mobile-menu.active {
    display: block;
}

.mobile-menu ul {
    list-style: none;
}

.mobile-menu ul li {
    margin-bottom: 15px;
    border-bottom: 1px solid #eaeaea;
    padding-bottom: 10px;
}

.mobile-menu ul li:last-child {
    border-bottom: none;
}

.mobile-menu ul li a {
    /* color: #2c3e50; */
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    display: block;
    padding: 10px;
    transition: background 0.3s ease;
}

.mobile-menu ul li a:hover {
    background: #f8f9fa;
    border-radius: 5px;
}

/* Banner */
.banner {
    height: 93vh;
    /* background: linear-gradient(135deg, #f5f7fa 0%, #e4e8ed 100%); */
    background: url("/Assets/accessories_newBack.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    /* color: #2c3e50; */
    color: white;
}

.banner-left {
    position: absolute;
    left: 7%;
    top: 50%;
    transform: translateY(-50%);
    height: 100%;
    width: 300px;
    overflow: hidden;
    border-radius: 0px;
}

.banner-slider {
    display: flex;
    flex-direction: column;
    animation: slideUp 15s linear infinite;
}

.banner-slider img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    margin-bottom: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

@keyframes slideUp {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-50%);
    }
}

.banner-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 80%;
}

.banner-overlay h1 {
    font-family: 'Audiowide', sans-serif;
    font-size: 3.5rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    /* color: #2c3e50; */
    color: white;
    text-shadow: 1px 1px 1px #000;
}

.banner-overlay .tagline {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    /* color: #3498db; */
    color: blanchedalmond;
    font-weight: 500;
}

.banner-btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 30px;
    /* background: #3498db; */
    background-color:lavender;
    /* color: #fff; */
    color: black;
    font-size: 1.1rem;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
    font-weight: 500;
}

.banner-btn:hover {
    /* background: #2980b9; */
    background-color: burlywood;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(52, 152, 219, 0.4);
}

/* Main Content */
.main-content {
    padding: 3rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

h2 {
    color: #2c3e50;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 600;
}

/* Category Navigation */
.category-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.category-btn {
    padding: 0.7rem 1.5rem;
    border: 1px solid #e0e0e0;
    background: #ffffff;
    color: #2c3e50;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
}

.category-btn.active, .category-btn:hover {
    background: #3498db;
    color: #fff;
    border-color: #3498db;
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.2);
}

/* Filter Section */
.filter-section {
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #eaeaea;
}

.filter-section h3 {
    margin-bottom: 1rem;
    color: #2c3e50;
    text-align: center;
    font-weight: 600;
}

.filter-options {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.filter-options label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    padding: 0.5rem 1rem;
    background: #f8f9fa;
    border-radius: 20px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-options label:hover {
    background: #e9ecef;
}

.filter-options input[type="checkbox"] {
    accent-color: #3498db;
}

/* Products Section */
.products {
    font-family: 'Audiowide', sans-serif;
}

.products-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.sort-dropdown {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    border: 1px solid #e0e0e0;
    background: #ffffff;
    color: #2c3e50;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    font-weight: 500;
}

/* Product Cards */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.accessory-card {
    /* background: #ffffff; */
    background: linear-gradient(to bottom, #ffffff, #f0f0f0, rgb(242, 247, 255));
    border-radius: 12px;
    /* box-shadow: 0 5px 5px rgba(11, 0, 0, 0.904); */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    border: 1px solid #f0f0f0;
}

.accessory-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 5px rgba(11, 0, 0, 0.904);
}

.accessory-card .pic {
    height: 250px;
    overflow: hidden;
    cursor: pointer;
}

.accessory-card .pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.accessory-card:hover .pic img {
    transform: scale(1.05);
}

.accessory-card .text {
    padding: 1.5rem;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-name {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    color: #2c3e50;
}

.price {
    margin-bottom: 1rem;
}

.product-price {
    font-size: 1rem;
    margin: 0.2rem 0;
    color: #3498db;
    font-weight: 500;
}

.product-detail span {
    color: #95a5a6;
    text-decoration: line-through;
    margin-right: 0.3rem;
}

.product-detail {
    color: #27ae60;
    font-size: 0.9rem;
    font-weight: 500;
}

.accessory-card button {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 30px;
    background: #3498db;
    color: #fff;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
    font-weight: 500;
}

.accessory-card button:hover {
    background: #2980b9;
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

/* Category Section */
.category-section {
    margin-bottom: 3rem;
}

.category-title {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    text-align: center;
    border-bottom: 2px solid #3498db;
    padding-bottom: 0.5rem;
    display: inline-block;
    font-weight: 600;
}

/* Footer */
footer {
    width: 100%;
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
    border-top: 1px solid #eaeaea;
}

.footer-up {
    width: 100%;
    display: flex;
    padding: 3rem 2rem;
    max-width: 1400px;
    margin: 0 auto; 
}

.sec1, .sec2, .sec3 {
    width: 33%;
    padding: 0 20px;
}

.sec1 .sec1-head, .sec2 .sec2-head, .sec3 .sec3-head {
    font-size: 1.5rem;
    font-family: 'Audiowide', sans-serif;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 600;
}

.sec1 .sec1-p, .sec2 ul, .sec3 .sec3-p {
    font-family: 'Audiowide', sans-serif;
    color: #5a6c7d;
}

.sec2 ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sec2 ul li {
    cursor: pointer;
    transition: color 0.3s ease;
    font-weight: 500;
}

.sec2 ul li:hover {
    color: #3498db;
}

.sec3 input {
    font-family: "Inter", sans-serif;
    margin-bottom: 10px;
    height: 40px;
    width: 100%;
    max-width: 300px;
    padding: 0 10px;
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    color: #2c3e50;
}

.sec3 button {
    font-family: "Inter", sans-serif;
    height: 40px;
    width: 140px;
    background: #3498db;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.sec3 button:hover {
    background: #2980b9;
}

.footer-down {
    width: 100%;
    display: flex;
    padding: 1.5rem 2rem;
    background: #f8f9fa;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #eaeaea;
}

.footer-down .s1 {
    font-family: "Inter", sans-serif;
    color: #5a6c7d;
}

.footer-down .s2 ul {
    list-style: none;
    display: flex;
    gap: 15px;
    font-family: "Inter", sans-serif;
    font-size: 0.8rem;
    flex-wrap: wrap;
}

.footer-down .s2 ul li {
    cursor: pointer;
    transition: color 0.3s ease;
    font-weight: 500;
}

.footer-down .s2 ul li:hover {
    color: #3498db;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .banner-overlay {
        left: 50%;
    }
    
    .banner-overlay h1 {
        font-size: 3rem;
    }
    
    .desktop-nav {
        gap: 1rem;
    }
}

/* iPad Pro and similar tablets */
@media (max-width: 1024px) {
    .banner-overlay h1 {
        font-size: 2.5rem;
    }
    
    .footer-up {
        flex-direction: column;
    }
    
    .sec1, .sec2, .sec3 {
        width: 100%;
        margin-bottom: 30px;
    }
    
    .footer-down {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}

/* Tablets and smaller devices */
@media (max-width: 768px) {
    .head {
        padding: 0 20px;
    }
    
    .desktop-nav {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .banner {
        height: 70vh;
    }
    
    .banner-left {
        display: none;
    }
    
    .banner-overlay {
        position: static;
        transform: none;
        padding: 20px;
    }
    
    .banner-overlay h1 {
        font-size: 2rem;
    }
    
    .products-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .category-nav {
        gap: 0.5rem;
    }
    
    .category-btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
}

/* Mobile devices */
@media (max-width: 576px) {
    .banner-overlay h1 {
        font-size: 1.8rem;
    }
    
    .banner-overlay .tagline {
        font-size: 1rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-up {
        padding: 1.5rem;
    }
    
    .footer-down {
        padding: 1rem;
    }
}