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

html {
    scroll-behavior: smooth;
}


:root {
    --primary: #0f172a;
    --accent: #2563eb;
    --accent-light: #93c5fd;
    --bg-main: #f8fafc;
    --bg-card: #e0e7ff;
    --text-main: #0f172a;
}


body {
    background: var(--bg-main);
    color: var(--text-main);
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}


.offerbar {
    padding: 8px;
    text-align: center;
    background: var(--primary);
    color: var(--bg-main);
    font-size: 1.2vw
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--bg-card);
    padding: 15px 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.logo {
    font-size: 3vw;
}

/*Navbar*/
.navbar-links {
    display: flex;
    gap: 45px;
    list-style: none;
    justify-content: space-between;
}

.navbar-links li a {
    font-size: 1.5vw;
    text-decoration: none;
    color: var(--accent);
}

.navbar-links li a:hover {
    color: var(--text-main);
    text-decoration: underline;
}

.menu-toggle {
    display: none;
    font-size: 30px;
    cursor: pointer;
}

/* Mobile View Navbar */
@media (max-width: 768px) {
    .navbar {
        display: flex;
        justify-content: center;
        text-align: center;
        gap: 10px;
        position: relative;
    }

    .logo {
        font-size: 5vw;
    }

    .menu-toggle {
        position: absolute;
        top: 10px;
        right: 0;
        display: block;
    }

    .navbar-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--bg-card);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 25px;
        padding: 20px 0;
        display: none;
        box-shadow: 4px 0 15px rgba(0, 0, 0, 0.25);
    }

    .navbar-links.active {
        display: flex;
    }

    .navbar-links li a {
        font-size: 18px;
    }
}

/*Slider*/
.slider {
    position: relative;
    width: 100%;
    height: 75vh;
    overflow: hidden;
    margin-top: 1%;
    border-radius: 5px;
}

.slider-content {
    position: absolute;
    text-align: center;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
}

.slider-content button {
    font-size: 2.2vh;
    padding: 15px 30px;
    background: var(--text-main);
    border: none;
    border-radius: 10px;
    color: var(--bg-main);
    cursor: pointer;
    margin-top: 2%;
}

.slider-content button:hover {
    color: var(--text-main);
    background: var(--accent-light);
}

.slider-left,
.slider-right {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 10;
}

.slider-left {
    left: 20px;
}

.slider-right {
    right: 20px;
}

.slider-image {
    position: absolute;
    width: 100%;
    object-fit: cover;
    border-radius: 5px;
    opacity: 0;
    transition: opacity 0.3s ease;
    filter: brightness(0.6)
}

.slider-image.active {
    opacity: 1;
}

.slider-wrap {
    padding: 10px;
    background: var(--bg-main);
}

/*Mobile view Slider*/
@media (max-width: 768px) {

    .slider {
        height: 60vh;
        margin-top: 0;
    }

    .slider-content h1 {
        font-size: 7vw !important;
        line-height: 1.3;
        padding: 0 10px;
    }

    .slider-content button {
        font-size: 2vh;
        padding: 10px 20px;
        margin-top: 15px;
    }

    .slider-left i,
    .slider-right i {
        font-size: 7vh !important;
    }

    .slider-left {
        left: 10px;
    }

    .slider-right {
        right: 10px;
    }

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

/*Brands*/
.brands {
    display: flex;
    justify-content: space-between;
    margin-top: 1%;
    padding: 10px;
    background: var(--bg-main);
}

.brands-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 2vw;
    text-align: center;
    color: var(--text-main);
    transition: transform 0.3s ease, color 0.3s ease;
}

.brands-info:hover {
    transform: translateY(-5px) scale(1.05);
    color: var(--accent);
    cursor: pointer;
}

.brands-icon {
    width: 4vw;
    transition: transform 0.3s ease;
}

.brands-info:hover .brands-icon {
    transform: scale(1.1);
}

/* Mobile View - Brands */
@media (max-width: 768px) {

    h2 {
        font-size: 5vw !important;
        text-align: center;
        margin-left: 0;
    }

    .brands {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
        padding: 15px 10px;
    }

    .brands-info {
        width: 30%;
        font-size: 4vw;
    }

    .brands-icon {
        width: 10vw;
    }
}

/*Services*/
.service-c1 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    height: 300px;
    padding: 10px;
    margin-top: 2%;
}

.service-small {
    background: var(--accent-light);
    color: var(--text-main);
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
}

.service-small h2 {
    font-size: 2vw;
}

.service-big {
    background: var(--primary);
    color: var(--bg-main);
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    font-size: 2vw;
}

.service-c2 {
    margin-top: 10px;
    display: flex;
    justify-content: space-around;
    gap: 5px;
    padding: 10px;
}

.service-c2 div {
    background: var(--bg-card);
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 5px;
    border-radius: 5px;
}

@media (max-width: 768px) {

    .service-c1 {
        grid-template-columns: 1fr;
        height: auto;
    }

    .service-small p {
        font-size: 3vw !important;
    }

    .service-big h1 {
        font-size: 6vw;
    }

    .service-c2 {
        display: none;
    }
}

/*New Arrivals*/
.new-arrivals {
    display: flex;
    justify-content: space-between;
    padding: 10px;
}

.new-arrivals div {
    display: flex;
    position: relative;
}

.new-arrivals button {
    position: absolute;
    bottom: 10%;
    left: 30%;
    padding: 5% 8%;
    border-radius: 15px;
    border: none;
    cursor: pointer;
    background: var(--accent-light);
    color: var(--text-main);
}

.new-arrivals button:hover {
    background: var(--primary);
    color: var(--bg-main);
}

.new-arrivals img {
    filter: brightness(0.5);
    transition: filter 0.3s ease;
    border-radius: 5px;
}

.new-arrivals div:hover img {
    cursor: pointer;
    filter: brightness(1);
}

/*Mobile view New arrivals*/
@media (max-width: 768px) {

    h2 {
        font-size: 5vw !important;
        margin-top: 5vw;
    }

    .new-arrivals {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .new-arrivals div {
        width: 48%;
        justify-content: center;
    }

    .new-arrivals img {
        width: 100% !important;
        height: auto !important;
    }

    .new-arrivals button {
        left: 50%;
        transform: translateX(-50%);
        font-size: 2.5vw;
        padding: 6% 10%;
    }
}

/*Most wanted*/
.most-wanted {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    background: var(--bg-main);
}

.most-wanted-content {
    position: relative;
    flex: 0 0 auto;
}

.product-img {
    width: 20vw;
    height: auto;
    border-radius: 8px;
}

.like-btn {
    width: 14%;
    position: absolute;
    bottom: 12%;
    right: 5%;
    cursor: pointer;
}

.most-wanted-content button {
    position: absolute;
    bottom: 10%;
    left: 5%;
    padding: 4% 7%;
    border-radius: 15px;
    background: var(--accent-light);
    color: var(--text-main);
    border: none;
    cursor: pointer;
}

.most-wanted-content button:hover {
    background: var(--primary);
    color: var(--bg-main);
}

/*Mobile view Most wanted*/
@media (max-width: 768px) {

    .product-img {
        width: 35vw;
    }

    .like-btn {
        width: 10%;
        bottom: 10%;
        right: 6%;
    }

    .most-wanted-content button {
        padding: 6% 10%;
        font-size: 12px;
        border-radius: 12px;
    }

    h2 {
        font-size: 5vw;
    }
}


/*Limited offer*/
.limited-offer {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    height: 350px;
    margin-top: 2%;
}

.limited-offer>div {
    min-height: 0;
}


.limited-image {
    background: var(--accent-light);
    display: flex;
    justify-content: center;
    align-items: center;
}

.limited-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: center;
}

.limited-offer-small {
    background: var(--accent-light);
    color: var(--text-main);
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
}

.limited-offer-big {
    background: var(--primary);
    color: var(--bg-main);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2vw;
    position: relative;
}

.limited-offer-big button {
    position: absolute;
    bottom: 10%;
    right: 33%;
    font-size: 2.5vh;
    padding: 3% 6%;
    background: var(--accent-light);
    border: solid 1px var(--primary);
    color: var(--text-main);
    border-radius: 10px;
    cursor: pointer;
}

.limited-offer-big button:hover {
    color: var(--bg-main);
}

/*Mobile view Limited offer*/
@media (max-width: 768px) {
    .limited-offer {
        display: none;
    }
}

/*News letter*/
.news-letter {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 2%;
    gap: 5px;
    background: var(--bg-card);
    padding: 15px;
}

.news-letter h1 {
    font-size: 2.5vw;
}

.news-letter p {
    font-size: 2vw;
}

.news-letter input {
    margin-top: 1%;
    width: 50%;
    padding: 0.5%;
    border: solid 3px var(--text-main);
    font-size: 1.5vw;
}

.news-letter button {
    margin-top: 1%;
    padding: 10px 20px;
    border-radius: 15px;
    font-size: 2vw;
    border: none;
    background: var(--accent-light);
    color: var(--text-main);
}

.news-letter button:hover {
    cursor: pointer;
    background: var(--text-main);
    color: var(--bg-main);
}

/* Mobile View - Newsletter */
@media (max-width: 768px) {

    .news-letter {
        padding: 20px 15px;
        gap: 10px;
        text-align: center;
    }

    .news-letter h1 {
        font-size: 6vw;
    }

    .news-letter p {
        font-size: 4vw;
    }

    .news-letter input {
        width: 90%;
        padding: 10px;
        font-size: 4vw;
        border-width: 2px;
    }

    .news-letter button {
        width: 60%;
        font-size: 4.5vw;
        padding: 12px 0;
        border-radius: 20px;
    }
}

/*Footer*/
.footer {
    background: var(--bg-card);
    color: var(--text-main);
    padding: 30px 20px 20px 20px;
    margin-top: 1%;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-logo,
.footer-list,
.footer-section h3 {
    font-size: 1.6vw;
}


.footer-container p {
    font-size: 1.5vw;
    color: var(--accent);
}

.footer-container ul {
    list-style: none;
    padding: 1%;
}

.footer-container ul li {
    margin-bottom: 3%;
}

.footer-container ul li a {
    font-size: 1.5vw;
    text-decoration: none;
    color: var(--accent);
    transition: color 0.3s;
}

.footer-container ul li a:hover {
    color: var(--text-main);
}

.social-icons a {
    font-size: 2vw;
    color: var(--accent);
    margin-right: 10px;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: var(--text-main);
}

.subscribe-form {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.subscribe-form input {
    padding: 8px 10px;
    border: none;
    border-radius: 5px;
    flex: 1;
}

.subscribe-form button {
    padding: 8px 15px;
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.subscribe-form button:hover {
    background: var(--text-main);
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    font-size: 1vw;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 20px;
}

/* Mobile View */
@media (max-width: 768px) {

    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-list {
        display: none;
    }

    .footer-logo,
    .footer-section h3 {
        font-size: 4vw;
    }

    .footer-container p {
        font-size: 3vw;
    }

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

    .social-icons a {
        font-size: 6vw;
        margin: 0 8px;
    }

    .subscribe-form {
        flex-direction: column;
        width: 100%;
        align-items: center;
    }

    .subscribe-form input,
    .subscribe-form button {
        width: 90%;
    }

    .footer-bottom {
        font-size: 3.5vw;
        text-align: center;
    }
}


/*Contact */
.contact {
    padding: 60px 20px;
    background: var(--bg-main);
    color: var(--text-main);
}

.contact-header {
    text-align: center;
    margin-bottom: 50px;
}

.contact-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: var(--primary);
}

.contact-header p {
    color: #475569;
    font-size: 1rem;
}

.contact-container {
    display: flex;
    gap: 40px;
    max-width: 1100px;
    margin: auto;
}

.contact-info,
.contact-form {
    flex: 1;
    background: var(--bg-card);
    padding: 30px;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.contact-info h2,
.contact-form h2 {
    margin-bottom: 20px;
    color: var(--primary);
}

.contact-info p {
    margin-bottom: 15px;
    font-size: 0.95rem;
    color: var(--text-main);
}

.contact-info i {
    margin-right: 10px;
    color: var(--accent);
}

.contact-social a {
    font-size: 20px;
    margin-right: 15px;
    color: var(--accent);
    transition: color 0.3s;
}

.contact-social a:hover {
    color: var(--primary);
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    padding: 12px 15px;
    border-radius: 10px;
    border: 1px solid var(--accent-light);
    font-size: 0.95rem;
    background: #fff;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent);
}

.contact-form button {
    padding: 12px;
    border: none;
    background: var(--accent);
    color: var(--bg-main);
    font-size: 1rem;
    border-radius: 10px;
    cursor: pointer;
}

.contact-form button:hover {
    background: var(--primary);
}

/* Mobile */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
    }

    .contact-header h1 {
        font-size: 2rem;
    }

    .contact-info,
    .contact-form {
        padding: 22px;
    }
}

/*Collections*/
.collection-page {
    display: flex;
    gap: 20px;
    padding: 20px;
}

.filters {
    width: 25%;
    background: var(--bg-card);
    padding: 15px;
    border-radius: 10px;
}

.product-container {
    width: 75%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    font-size: 1.5vw;
    color: var(--text-main);
}

.product {
    background: var(--bg-card);
    padding: 10px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
}

.product img {
    width: 100%;
    border-radius: 8px;
}

.product:hover {
    transform: translateY(-5px);
    cursor: pointer;
}

/*Collections search*/
.collection-search {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 20px;
    background: var(--bg-card);
    margin: 20px;
    border-radius: 10px;
}

.collection-search i {
    font-size: 18px;
    color: gray;
}

.collection-search input {
    width: 100%;
    border: none;
    outline: none;
    font-size: 16px;
    background: transparent;
}

/* Mobile view Collections*/
@media (max-width: 768px) {
    .collection-page {
        flex-direction: column;
    }

    .filters {
        width: 100%;
    }

    .filters input:hover {
        cursor: pointer;
    }

    .product-container {
        font-size: 16px;
        width: 100%;
        grid-template-columns: repeat(2, 1fr);
    }
}

