* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #fff;
    color: #333;
}

/* Top Banner */
.top-banner {
    background: #e74c3c;
    color: #fff;
    text-align: center;
    padding: 8px 0;
    font-size: 14px;
}

.top-banner a {
    color: #fff;
    font-weight: bold;
    margin-left: 5px;
    text-decoration: underline;
}

/* Navbar */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 50px;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.logo {
    font-weight: 700;
    font-size: 20px;
}

.menu {
    list-style: none;
    display: flex;
    gap: 25px;
}

.menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

.menu a.active,
.menu a:hover {
    color: #e74c3c;
}

.shop-btn {
    background: #e74c3c;
    color: white;
    padding: 6px 12px;
    border-radius: 5px;
}

/* Search Box */
.search-box {
    position: relative;
}

.search-box input {
    padding: 6px 30px 6px 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.search-box i {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #777;
}

/* Icons (right section) */
.icons {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cart {
    position: relative;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #e74c3c;
    color: white;
    font-size: 12px;
    padding: 2px 6px;
    border-radius: 50%;
}


.logout-btn {
    background: #e74c3c;
    color: #fff;
    border: none;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: #000;
    text-align: center;
    padding: 30px 0;
}

.slider img {
    width: 300px;
}

.indicator span {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 10px 3px;
    border-radius: 50%;
    background: #777;
}

.indicator span:first-child {
    background: #e74c3c;
}


.shop-collection {
    padding: 60px 100px;
    background: #fff;
}

.section-header {
    position: relative;
    margin-bottom: 40px;
}

.featured {
    display: inline-block;
    background: #e74c3c;
    color: #fff;
    font-size: 13px;
    padding: 3px 8px;
    border-radius: 3px;
    position: relative;
    top: -5px;
}

.section-header h2 {
    font-size: 28px;
    margin-top: 8px;
    border-left: 4px solid #e74c3c;
    padding-left: 10px;
}

.collection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.collection-item {
    background: #f8f8f8;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    position: relative;
    transition: 0.3s;
}

.collection-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.image-wrapper {
    position: relative;
}

.image-wrapper img {
    width: 100%;
    border-radius: 10px;
}


.collection-item h3 {
    margin-top: 15px;
    font-size: 18px;
    font-weight: 600;
}

.collection-item a {
    text-decoration: none;
    color: #000;
    font-size: 14px;
    border-bottom: 1px solid transparent;
    transition: 0.3s;
}

.collection-item a:hover {
    color: #e74c3c;
    border-color: #e74c3c;
}


/* Promotion Section */
.promotion {
    padding: 80px 100px;
    background: #fff;
}

.promotion-header {
    margin-bottom: 30px;
}

.promotion-header .featured {
    display: inline-block;
    background: #e74c3c;
    color: white;
    font-size: 13px;
    padding: 3px 8px;
    border-radius: 3px;
}

.promotion-header h2 {
    font-size: 28px;
    margin-top: 8px;
    border-left: 4px solid #e74c3c;
    padding-left: 10px;
}

/* Promo container */
.promo-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fbe3b9;
    border-radius: 10px;
    overflow: hidden;
    padding: 40px;
    gap: 40px;
}

/* Left side */
.promo-image {
    position: relative;
    flex: 1;
}

.promo-image img {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
}


/* Right side */
.promo-details {
    flex: 1;
}

.promo-details h5 {
    color: #e74c3c;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.promo-details h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.promo-details p {
    font-size: 15px;
    color: #555;
    margin-bottom: 25px;
}

/* Countdown */
.countdown {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
}

.time-box {
    background: white;
    border-radius: 6px;
    padding: 10px 15px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.time-box span {
    font-size: 20px;
    font-weight: 700;
    display: block;
}

.time-box small {
    font-size: 12px;
    color: #555;
}

/* Button */
.shop-btn {
    background: #000;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 15px;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

.shop-btn:hover {
    background: #e74c3c;
}

.promo-section {
    width: 100%;
}

.promo-header {
    display: flex;
    align-items: center;
    padding: 20px 40px 0;
    gap: 10px;
}

.red-dot {
    width: 10px;
    height: 10px;
    background: #f44336;
    border-radius: 50%;
}

.our-products {
    color: #f44336;
    font-size: 14px;
    font-weight: 600;
}

.special-title {
    font-size: 24px;
    font-weight: 700;
    margin: 10px 40px;
}

.promo-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #141218;
    color: white;
    padding: 60px 80px;
}

.promo-text {
    max-width: 50%;
}

.pro-beyond {
    color: #a0a0a0;
    font-weight: 600;
    margin-bottom: 10px;
}

.promo-text h1 {
    font-size: 56px;
    font-weight: 400;
}

.promo-text h1 span {
    font-weight: 700;
}

.description {
    margin-top: 15px;
    color: #bfbfbf;
    font-size: 16px;
}

.shop-btn {
    margin-top: 30px;
    padding: 10px 25px;
    background: transparent;
    border: 1px solid #bfbfbf;
    color: white;
    font-size: 15px;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

.shop-btn:hover {
    background: white;
    color: #000;
}

.promo-image {
    position: relative;
    text-align: center;
}

.promo-image img {
    width: 400px;
    /* istəyə görə böyüdüb-kiçildilə bilər */
    max-width: 100%;
    border-radius: 10px;
}

.feedback-section {
    text-align: center;
    padding: 60px 20px;
}

.feedback-section h2 {
    color: #c0392b;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 50px;
}

.feedback-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
}

.feedback-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 30px;
    width: 350px;
    text-align: left;
    position: relative;
    transition: 0.3s;
}

.feedback-card.active {
    background: #f2b4b4;
}

.feedback-card:hover {
    transform: translateY(-5px);
}

.feedback-card .quote {
    font-size: 30px;
    color: #c0392b;
    margin-bottom: 10px;
    display: block;
}

.feedback-card h3 {
    color: #c0392b;
    font-size: 20px;
    margin-bottom: 15px;
}

.feedback-card p {
    font-size: 15px;
    color: #222;
    line-height: 1.6;
}

.products-section {
    padding: 60px 80px;
    text-align: left;
}

.products-section h4 {
    color: #e63946;
    font-size: 14px;
    font-weight: 600;
}

.products-section h2 {
    font-size: 26px;
    font-weight: 700;
    margin: 10px 0 40px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.product-card {
    background-color: #f8f8f8;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    transition: 0.3s;
}

.product-card.dark {
    background-color: #1e1b20;
    color: #fff;
}

.product-card img {
    width: 150px;
    height: auto;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

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

.product-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.product-card p {
    font-size: 14px;
    color: #555;
    margin-bottom: 20px;
}

.product-card.dark p {
    color: #ccc;
}

.product-card button {
    background-color: transparent;
    border: 1px solid #000;
    padding: 10px 25px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: 0.3s;
}

.product-card.dark button {
    border: 1px solid #fff;
    color: #fff;
}

.product-card button:hover {
    background-color: #000;
    color: #fff;
}

.product-card.dark button:hover {
    background-color: #fff;
    color: #000;
}

@media (max-width: 768px) {
    .products-section {
        padding: 40px 20px;
    }
}

footer {
    background-color: #db4444;
    color: #fff;
    padding: 60px 100px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.footer-column h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-column p {
    font-size: 14px;
    color: #f0f0f0;
    margin-bottom: 10px;
    line-height: 1.6;
}

.subscribe-box {
    margin-top: 10px;
    border: 1px solid #fff;
    border-radius: 4px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
}

.subscribe-box input {
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    font-size: 14px;
    width: 100%;
}

.subscribe-box input::placeholder {
    color: #f0f0f0;
}

.subscribe-box button {
    background: none;
    border: none;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
}

.footer-links a {
    display: block;
    color: #fff;
    font-size: 14px;
    margin-bottom: 8px;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    text-decoration: underline;
}

.download-app img {
    width: 10px;
    margin: 8px 0;
    border-radius: 6px;
    cursor: pointer;
    display: block;
}

.social-icons {
    margin-top: 20px;
}

.social-icons a {
    color: #fff;
    font-size: 18px;
    margin-right: 15px;
    text-decoration: none;
    transition: 0.3s;
}

.social-icons a:hover {
    opacity: 0.7;
}

@media (max-width: 768px) {
    footer {
        padding: 40px 20px;
    }
}

.footer-column img {
    width: 60px;
}