@import url(https://fonts.googleapis.com/css2?family=Rubik:wght@100;200;300;400;500;600;800;900&display=swap); 


*{

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



body{
        
          font-family: 'Rubik', sans-serif;
       
}

.header{
    background-image: url(./images/Background\ \(4\).png);
background-repeat: no-repeat;
background-size: cover;
height: 100vh;
}

.head_container{
    max-width: 1250px;
    width: 90%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: auto;
    padding-top: 50px;
}


.nav_bar{
    display: flex;
    align-items: center;
    gap: 50px;
    cursor: pointer;
}


.nav_item{
    background: url(./images/Ellipse\ 35.png);
    background-repeat: no-repeat;
    background-size: cover;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}


.img_menubar{
    cursor: pointer;
}


.main_img{
    padding-top: 50px;
    margin-left: 10rem;
}

.word{
    padding-top: 50px;
    margin-left: 70rem;
    padding: auto;
}


.section_head{
    display: flex;
    align-items: center;
    margin-left: -3rem;
    
}

.head_text{
  display: flex;
  margin-left: 200px;
}

.head_text h4{
    color: white;
}




.hero-content {
    display: flex;
    flex-direction: column; 
    align-items: flex-start; 
    gap: 20px; 
    margin-left: 80px; 
}

.main-title {
    font-size: 95px; 
    font-weight: 800;
    color: white;
    margin: 0;
    line-height: 1;
}

.action-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px; 
}

.pricing {
    display: flex;
    align-items: center;
    gap: 15px;
}

.current-price {
    font-size: 32px;
    font-weight: bold;
    color: white;
}

.old-price {
    font-size: 30px;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: line-through;
}

.buy-btn {
    background-color: white;
    color: #f87171; 
    border: none;
    padding: 10px 30px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 20px;
    cursor: pointer;
    text-transform: uppercase;
    width: fit-content; 
}




.collection-section {
    text-align: center;
    font-family: 'Arial', sans-serif;
    padding: 50px 20px;
    background-color: #fff;
}

.title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 40px;
}

.title span {
    text-transform: lowercase;
}

.slider-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.slider-wrapper {
    display: flex;
    align-items: center;
    gap: -20px; }


.card {
    background: #f9f9f9;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}


.card.side {
    width: 200px;
    height: 250px;
    opacity: 0.7;
    transform: scale(0.85);
}


.card.main {
    width: 280px;
    height: 350px;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    z-index: 2;
    transform: scale(1);
}

.card img {
    width: 80%;
    object-fit: contain;
}


.nav-btn {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #333;
    padding: 10px;
}

.nav-btn:hover {
    color: #000;
}







.features-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px;
    max-width: 1100px;
    margin: 0 auto;
    font-family: 'Arial', sans-serif;
}

.features-content {
    flex: 1;
}

.features-title {
    font-size: 32px;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 40px;
    color: #000;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    cursor: pointer;
}

/* Dumaloq ikona qismi */
.red-circle {
    width: 50px;
    height: 50px;
    border: 2px solid #FDD8D8; /* Maketdagi rang */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.icon img {
    width: 24px;
}

.text h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.text p {
    margin: 2px 0;
    font-size: 12px;
    color: #888;
}

.text a {
    font-size: 11px;
    color: #ff4d4d;
    text-decoration: none;
    font-weight: bold;
}


.features-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.features-image img {
    max-width: 100%;
    height: auto;
     
}


@media (max-width: 768px) {
    .features-section {
        flex-direction: column;
        text-align: center;
    }
    .feature-item {
        flex-direction: column;
        margin-bottom: 30px;
    }
    .red-circle {
        margin-right: 0;
        margin-bottom: 10px;
    }
}


.products-section {
    padding: 60px 20px;
    text-align: center;
    font-family: 'Arial', sans-serif;
    max-width: 1100px;
    margin: 0 auto;
}

.products-header h2 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 10px;
}

.products-header p {
    color: #888;
    font-size: 14px;
    margin-bottom: 50px;
    line-height: 1.5;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}


.img-box {
    font-size: 500px;
    position: relative;
    border-radius: 20px;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    transition: transform 0.3s;
}

.img-box:hover {
    transform: translateY(-5px);
}

.pink-bg { background-color: #FDE8EF; }
.blue-bg { background-color: #E8F0FD; }
.green-bg { background-color: #E8FDF5; }

.img-box img {
    width: 80%;
    object-fit: contain;
}

.cart-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: none;
    background: white;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    cursor: pointer;
    font-size: 20px;
    color: #888;
}


.product-info {
    text-align: left;
    padding: 0 10px;
}

.stars {
    color: #FFB800;
    font-size: 14px;
    margin-bottom: 8px;
}

.rating {
    color: #333;
    font-weight: bold;
    margin-left: 5px;
}

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

.name {
    font-weight: bold;
    color: #333;
}

.price {
    font-weight: bold;
    color: #000;
}


@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
}









.box-content-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px; 
    padding: 80px 20px;
    max-width: 1100px;
    margin: 0 auto;
    font-family: 'Arial', sans-serif;
}

.box-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.box-image img {
    max-width: 100%;
    height: auto;
   
}

.box-details {
    flex: 1;
    text-align: left;
    cursor: pointer;
}

.box-title {
    font-size: 36px;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #000;
}

.items-list {
    list-style: none;
    padding: 0;
}

.items-list li {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}


.check-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border: 1px solid #ccc;
    border-radius: 50%;
    margin-right: 15px;
    font-size: 10px;
    color: #888;
}


@media (max-width: 768px) {
    .box-content-section {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    
    .box-image {
        justify-content: center;
    }
    
    .box-details {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}







.subscribe-section {
    padding: 80px 20px;
    display: flex;
    justify-content: center;
    font-family: 'Arial', sans-serif;
}

.subscribe-container {
    background-color: #FFF5F5; 
    width: 100%;
    max-width: 800px;
    padding: 60px 40px;
    border-radius: 30px;
    text-align: center;
    position: relative; 
    overflow: hidden;
}

.subscribe-title {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #000;
}

.subscribe-text {
    font-size: 14px;
    color: #666;
    margin-bottom: 35px;
    line-height: 1.6;
}


.subscribe-form {
    display: flex;
    background: #fff;
    padding: 8px;
    border-radius: 50px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    max-width: 500px;
    margin: 0 auto;
}

.subscribe-form input {
    flex: 1;
    border: none;
    padding: 15px 25px;
    border-radius: 50px;
    outline: none;
    font-size: 14px;
}

.subscribe-form button {
    background-color: #FF4D4D; 
    color: #fff;
    border: none;
    padding: 15px 35px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s ease;
}

.subscribe-form button:hover {
    background-color: #E63939;
}


.music-note {
    position: absolute;
    font-size: 40px;
    color: #FFD6D6;
    opacity: 0.6;
}

.note-left {
    left: 40px;
    top: 50%;
    transform: translateY(-50%) rotate(-15deg);
}

.note-right {
    right: 40px;
    top: 50%;
    transform: translateY(-50%) rotate(15deg);
}


@media (max-width: 600px) {
    .subscribe-form {
        flex-direction: column;
        background: transparent;
        box-shadow: none;
        gap: 15px;
    }
    
    .subscribe-form input {
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    }
}



.main-footer {
    background-color: #FF4948; /* Maketdagi qizil rang */
    padding: 40px 0;
    font-family: 'Arial', sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between; /* Elementlarni uch tomonga yoyish */
    align-items: center;
    padding: 0 50px;
}

/* Logotip stili */
.footer-logo img {
    height: 40px;
    filter: brightness(0) invert(1); /* Logotipni oq rangga o'tkazish */
}

/* Navigatsiya stili */
.footer-nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.footer-nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: opacity 0.3s;
}

.footer-nav ul li a:hover {
    opacity: 0.8;
}


.footer-social {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 35px;
    height: 35px;
    background-color: white;
    color: #FF4948;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 18px;
    transition: transform 0.3s;
}

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


@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
}