body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    background-color: #050407;
    color: #fff;
    overflow-x: hidden;
    scrollbar-color: #00ff00 #050407;
    scrollbar-width: thin;
    padding-top: 80px;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
    position: relative;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #050407;
}

::-webkit-scrollbar-thumb {
    background-color: #00ff00;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #00cc00;
}

.header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #000;
    z-index: 1001;
    padding: 10px 0;
    border-bottom: 1px solid #333;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 40px;
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-menu ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    margin-left: 20px;
    position: relative;
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    font-family: 'Unbounded', sans-serif;
    text-transform: lowercase;
    font-weight: 600;
    transition: color 0.3s;
    padding: 10px 14px;
    display: inline-block;
}

.nav-menu a:hover {
    color: #277f4a;
}

.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #050407;
    min-width: 240px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    z-index: 1002;
    border-radius: 10px;
    padding: 8px 0;
    top: calc(100% - 1px);
    left: 0;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.15s ease, transform 0.15s ease;
}

.dropdown:hover .dropdown-content {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.dropdown-content a {
    display: block;
    padding: 12px 16px;
    color: #fff;
    text-decoration: none;
    white-space: nowrap;
    transition: background-color 0.2s ease;
}

.dropdown-content a:hover {
    background-color: #235335;
    border-radius: 8px;
}

.banner {
    margin-top: 20px;
    border-radius: 15px;
    padding: 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    height: 220px;
}

.banner-image {
    position: relative;
    width: 100%;
    height: 100%;
}

.banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    aspect-ratio: 16 / 9;
    filter: blur(2px);
}

.banner-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 90%;
    padding: 15px;
    box-sizing: border-box;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.banner h1 {
    font-family: 'Unbounded', sans-serif;
    font-size: clamp(24px, 5vw, 34px);
    font-weight: 600;
    margin: 0 0 10px;
    color: #fff;
    overflow-wrap: break-word;
}

.banner p {
    font-size: clamp(16px, 3vw, 21px);
    line-height: 1.2;
    color: #fff;
    margin: 0;
    overflow-wrap: break-word;
}

.animate-text {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease-out forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.search-section {
    width: 100%;
    background-color: transparent;
    margin: 20px 0;
    padding: 0;
}

.search-section .search-container {
    position: relative;
    display: block;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
    box-sizing: border-box;
}

.search-section input {
    width: 100%;
    height: 50px;
    padding: 10px 20px 10px 60px;
    border: none;
    border-radius: 10px;
    background-color: #1a1a1a;
    color: #fff;
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    box-sizing: border-box;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    outline: none;
    transition: box-shadow 0.3s;
}

.search-section input:focus {
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.5);
}

.search-section .search-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    cursor: pointer;
}

.search-section .search-icon svg {
    fill: #fff;
    transition: transform 0.3s;
}

.search-section .search-icon:hover svg {
    transform: scale(1.1);
}

.products-section {
    padding: 40px 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.product-card {
    background-color: #1a1a1a;
    border-radius: 10px;
    overflow: hidden;
    text-align: left;
    padding: 0;
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: scale(1.05);
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    border-radius: 10px 10px 0 0;
    background-color: #1a1a1a;
}

.product-card-content {
    padding: 15px;
}

.product-card h3 {
    font-size: 20px;
    margin: 0 0 10px;
}

.product-price {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.current-price {
    font-size: 18px;
    font-weight: bold;
}

.old-price {
    font-size: 14px;
    color: #9e9e9e;
    text-decoration: line-through;
}

.animate-card {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.5s ease-out forwards;
}

.animate-card:nth-child(1) { animation-delay: 0.1s; }
.animate-card:nth-child(2) { animation-delay: 0.2s; }
.animate-card:nth-child(3) { animation-delay: 0.3s; }
.animate-card:nth-child(4) { animation-delay: 0.4s; }
.animate-card:nth-child(5) { animation-delay: 0.5s; }
.animate-card:nth-child(6) { animation-delay: 0.6s; }

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-section {
    padding: 60px 0;
}

.product-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.product-image {
    flex: 1;
    min-width: 300px;
}

.product-image img {
    width: 100%;
    border-radius: 10px;
}

.product-info {
    flex: 1;
    min-width: 300px;
}

.product-title {
    font-size: 28px;
    margin-bottom: 10px;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 20px 0;
}

.current-price {
    font-size: 24px;
    font-weight: bold;
}

.old-price {
    font-size: 18px;
    color: #9e9e9e;
    text-decoration: line-through;
}

.buy-button {
    display: inline-block;
    padding: 12px 30px;
    background-color: #235335;
    color: white;
    border: 1px solid #277f4a;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    margin: 20px 0;
    transition: background-color 0.3s;
}

.buy-button:hover {
    background-color: #1a3e27;
}

.product-description {
    line-height: 1.6;
}

.order-form {
    margin-top: 20px;
    background-color: #1a1a1a;
    padding: 20px;
    border-radius: 10px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s ease-out forwards 0.3s;
}

.order-form h3 {
    font-family: 'Unbounded', sans-serif;
    font-size: 20px;
    margin-bottom: 15px;
}

.delivery-options {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.delivery-options label {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
}

.delivery-options input[type="radio"] {
    appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid #277f4a;
    border-radius: 50%;
    background-color: #1a1a1a;
    cursor: pointer;
}

.delivery-options input[type="radio"]:checked {
    background-color: #277f4a;
    border-color: #00ff00;
}

.success-message {
    color: #00ff00;
    font-size: 14px;
    margin-bottom: 10px;
}

.error-message {
    color: #ff4d4d;
    font-size: 14px;
    margin-bottom: 10px;
}

.faq-section {
    padding: 40px 0;
}

.faq-item {
    background-color: #1a1a1a;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 15px;
}

.faq-question {
    font-weight: bold;
    margin-bottom: 10px;
}

.claim-section {
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.claim-section h1 {
    font-family: 'Unbounded', sans-serif;
    font-size: 28px;
    margin-top: -50px;
}

.claim-section p {
    font-size: 14px;
    color: #b9b9b9;
    margin: 0 0 20px;
}

.form-group {
    margin-bottom: 15px;
    text-align: left;
}

.form-group label {
    display: block;
    font-size: 14px;
    margin-bottom: 5px;
}

.t-input {
    -webkit-appearance: none;
    box-sizing: border-box;
    font-size: 16px;
    height: 60px;
    line-height: 1.33;
    margin: 0;
    outline: none;
    padding: 0 20px;
    width: 100%;
    font-family: 'Unbounded', Arial, sans-serif;
    color: #ffffff;
    border: 1px solid #1b1b1b;
    background-color: #1b1b1b;
    border-radius: 10px;
}

.form-group textarea.t-input {
    height: 150px;
    padding: 10px 20px;
    resize: vertical;
}

.t-input::placeholder {
    color: #ffffff;
    opacity: 0.5;
}

.submit-button {
    width: 100%;
    padding: 10px;
    background-color: #235335;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-button:hover {
    background-color: #277f4a;
}

footer {
    background-color: #000;
    padding: 40px 0;
    margin-top: 60px;
    border-radius: 10px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-column {
    flex: 1;
    min-width: 200px;
}

.footer-title {
    color: #525252;
    margin-bottom: 15px;
    font-size: 16px;
    text-transform: uppercase;
}

.footer-link {
    display: block;
    color: #fff;
    margin-bottom: 10px;
    text-decoration: none;
}

.footer-link:hover {
    text-decoration: underline;
}

@media (max-width: 980px) {
    .nav-menu ul {
        display: none;
    }

    .nav-menu {
        position: relative;
    }

    .menu-toggle {
        display: block;
        cursor: pointer;
    }

    .menu-toggle span {
        display: block;
        width: 28px;
        height: 3px;
        background-color: #fff;
        margin: 5px 0;
        transition: all 0.3s;
    }

    .nav-menu.active ul {
        display: block;
        position: absolute;
        top: 60px;
        right: 20px;
        background-color: #050407;
        border-radius: 10px;
        padding: 15px;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
        width: 200px;
    }

    .nav-menu.active li {
        margin: 10px 0;
    }

    .dropdown-content {
        display: none;
        position: static;
        box-shadow: none;
        background-color: #1a1a1a;
        border-radius: 8px;
        margin-top: 5px;
        padding: 10px;
        opacity: 0;
        transform: translateY(10px);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }

    .dropdown.active .dropdown-content {
        display: block;
        opacity: 1;
        transform: translateY(0);
    }

    .dropdown-content a {
        padding: 10px 12px;
        font-size: 14px;
    }

    .banner {
        height: auto;
    }

    .banner-img {
        display: none;
    }

    .banner-content {
        position: static;
        transform: none;
        padding: 20px 10px;
        max-width: 100%;
    }

    .banner h1 {
        font-size: clamp(16px, 5vw, 20px);
    }

    .banner p {
        font-size: clamp(12px, 3.5vw, 14px);
    }

    .search-section input {
        height: 40px;
        font-size: 14px;
        padding: 10px 40px 10px 50px;
    }

    .search-section .search-icon {
        left: 15px;
        width: 20px;
        height: 20px;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .products-section {
        padding: 20px 0;
    }

    .product-container {
        flex-direction: column;
    }

    .order-form {
        padding: 15px;
    }

    .delivery-options {
        flex-direction: column;
        gap: 10px;
    }

    .footer-links {
        flex-direction: column;
    }
}

@media (max-width: 479px) {
    .nav-menu.active ul {
        width: 180px;
        padding: 10px;
    }

    .dropdown-content a {
        font-size: 13px;
        padding: 8px 10px;
    }

    .banner {
        height: auto;
    }

    .banner-img {
        display: none;
    }

    .banner-content {
        position: static;
        transform: none;
        padding: 20px 10px;
        max-width: 100%;
    }

    .banner h1 {
        font-size: clamp(16px, 5vw, 20px);
    }

    .banner p {
        font-size: clamp(12px, 3.5vw, 14px);
    }

    .search-section input {
        height: 36px;
        font-size: 12px;
        padding: 10px 30px 10px 40px;
    }

    .search-section .search-container {
        padding: 0 10px;
    }

    .search-section .search-icon {
        left: 10px;
        width: 18px;
        height: 18px;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .product-card img {
        height: 200px;
        object-fit: contain;
        background-color: #1a1a1a;
    }

    .products-section {
        padding: 20px 0;
    }

    .claim-section h1 {
        font-size: 24px;
    }

    .claim-section p {
        font-size: 12px;
    }

    .t-input {
        font-size: 14px;
        height: 50px;
    }

    .form-group textarea.t-input {
        height: 120px;
    }

    .order-form h3 {
        font-size: 18px;
    }

    .delivery-options label {
        font-size: 13px;
    }
}