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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #0a0a0a;
    color: #ffffff;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background-color: #1a1a1a;
    padding: 20px 0;
    border-bottom: 1px solid #2a2a2a;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: bold;
}

.logo .icon {
    background-color: #ff9800;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 20px;
}

.nav-menu {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.nav-link {
    color: #999;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    padding: 12px 16px;
    border-bottom: 3px solid transparent;
    cursor: pointer;
    border-radius: 4px 4px 0 0;
}

.nav-link.active {
    color: #ff9800;
    border-bottom: 3px solid #ff9800;
    background-color: rgba(255, 152, 0, 0.1);
}

.nav-link:hover {
    color: #ff9800;
    border-bottom-color: #ff9800;
}

/* Hero Section */
.hero {
    padding: 60px 0;
    text-align: center;
}

.badge {
    display: inline-block;
    background-color: #2a2a2a;
    padding: 10px 20px;
    border-radius: 25px;
    margin-bottom: 20px;
    font-size: 14px;
}

.hero-title {
    font-size: 48px;
    margin-bottom: 20px;
}

.highlight {
    color: #ff9800;
}

.hero-subtitle {
    font-size: 18px;
    color: #999;
    max-width: 700px;
    margin: 0 auto;
}

/* Products Section */
.products {
    padding: 60px 0;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.section-title {
    font-size: 32px;
    text-align: right;
    margin: 0;
}

.btn-add-product {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #ff9800;
    color: #000;
    border: none;
    font-size: 32px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-add-product:hover {
    background-color: #e68900;
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(255, 152, 0, 0.4);
}

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

.product-card {
    background-color: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(255, 152, 0, 0.3);
}

.product-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: #ff9800;
    color: #000;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 14px;
    z-index: 1;
}

.product-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

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

.product-info {
    padding: 20px;
}

.product-title {
    font-size: 20px;
    margin-bottom: 10px;
}

.product-desc {
    color: #999;
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.5;
}

.btn-buy {
    width: 100%;
    background-color: #ff9800;
    color: #000;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-buy:hover {
    background-color: #e68900;
}

/* Features Section */
.features {
    padding: 60px 0;
    background-color: #1a1a1a;
}

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

.feature-card {
    text-align: center;
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.feature-title {
    font-size: 20px;
    margin-bottom: 10px;
}

.feature-desc {
    color: #999;
    font-size: 14px;
}

/* Footer */
.footer {
    background-color: #0f0f0f;
    padding: 60px 0 20px;
    margin-top: 60px;
}

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

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #ff9800;
}

.footer-links, .footer-contact {
    list-style: none;
}

.footer-links li, .footer-contact li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #ff9800;
}

.footer-contact li {
    color: #999;
    font-size: 14px;
}

.newsletter {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.newsletter input {
    flex: 1;
    padding: 10px;
    border: 1px solid #2a2a2a;
    background-color: #1a1a1a;
    color: #fff;
    border-radius: 6px;
}

.newsletter button {
    background-color: #ff9800;
    color: #000;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

.newsletter button:hover {
    background-color: #e68900;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #2a2a2a;
    color: #666;
    font-size: 14px;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
    animation: fadeIn 0.3s;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background-color: #1a1a1a;
    margin: 5% auto;
    padding: 0;
    border-radius: 12px;
    width: 90%;
    max-width: 900px;
    animation: slideDown 0.3s;
    position: relative;
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close {
    color: #aaa;
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1;
    transition: color 0.3s;
}

.close:hover,
.close:focus {
    color: #ff9800;
}

.modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 40px;
}

.modal-image {
    width: 100%;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
}

.modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-details {
    display: flex;
    flex-direction: column;
}

.modal-details h2 {
    font-size: 28px;
    margin-bottom: 15px;
}

.modal-price {
    font-size: 32px;
    color: #ff9800;
    font-weight: bold;
    margin-bottom: 20px;
}

.modal-details > p {
    color: #999;
    margin-bottom: 30px;
    line-height: 1.8;
}

.modal-specs {
    margin-bottom: 30px;
}

.modal-specs h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #ff9800;
}

.modal-specs ul {
    list-style: none;
    padding-right: 0;
}

.modal-specs li {
    color: #ccc;
    margin-bottom: 10px;
    padding-right: 20px;
    position: relative;
}

.modal-specs li:before {
    content: "✓";
    color: #ff9800;
    position: absolute;
    right: 0;
}

.modal-actions {
    display: flex;
    gap: 15px;
    margin-top: auto;
}

.btn-add-cart,
.btn-buy-now {
    flex: 1;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
    text-decoration: none;
}

.btn-add-cart {
    background-color: transparent;
    border: 2px solid #ff9800;
    color: #ff9800;
}

.btn-add-cart:hover {
    background-color: #ff9800;
    color: #000;
}

.btn-buy-now {
    background-color: #ff9800;
    color: #000;
}

.btn-buy-now:hover {
    background-color: #e68900;
}

/* Add Product Form */
.modal-form {
    max-width: 600px;
}

.modal-form h2 {
    text-align: right;
    margin-bottom: 30px;
    font-size: 24px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    text-align: right;
    font-weight: 500;
    color: #fff;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #2a2a2a;
    background-color: #1a1a1a;
    color: #fff;
    border-radius: 6px;
    font-family: inherit;
    transition: border-color 0.3s;
    direction: rtl;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff9800;
}

.form-group textarea {
    resize: vertical;
}

.form-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
}

.btn-submit {
    background-color: #ff9800;
    color: #000;
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: #e68900;
}

.btn-cancel {
    background-color: transparent;
    color: #999;
    padding: 12px 30px;
    border: 1px solid #999;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-cancel:hover {
    color: #fff;
    border-color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-wrapper {
        flex-direction: column;
        gap: 20px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .modal-body {
        grid-template-columns: 1fr;
        padding: 20px;
    }

    .modal-image {
        height: 300px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .ads-grid {
        grid-template-columns: 1fr;
    }
}

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

    .ads-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== ADS SECTION ===== */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(255, 152, 0, 0.3);
    }
    50% {
        box-shadow: 0 0 30px rgba(255, 152, 0, 0.6);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.ads {
    padding: 60px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    position: relative;
    overflow: hidden;
}

.ads::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 152, 0, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.ads-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.ad-card {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    border: 2px solid #ff9800;
    border-radius: 15px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    animation: slideInUp 0.6s ease-out forwards;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.ad-card:nth-child(1) {
    animation-delay: 0s;
}

.ad-card:nth-child(2) {
    animation-delay: 0.2s;
}

.ad-card:nth-child(3) {
    animation-delay: 0.4s;
}

.ad-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.1) 50%,
        transparent 100%
    );
    background-size: 1000px 100%;
    animation: shimmer 3s infinite;
}

.ad-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 15px;
    padding: 2px;
    background: linear-gradient(135deg, #ff9800, transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ad-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: #ffb84d;
    box-shadow: 0 20px 50px rgba(255, 152, 0, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

.ad-card:hover::after {
    opacity: 1;
}

.ad-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ff9800, #ffb84d);
    color: #000;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(255, 152, 0, 0.4);
    animation: float 3s ease-in-out infinite;
}

.ad-content {
    position: relative;
    z-index: 2;
    color: #ffffff;
}

.ad-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #ff9800;
    transition: color 0.3s ease;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.ad-card:hover .ad-content h3 {
    color: #ffb84d;
}

.ad-content p {
    font-size: 16px;
    color: #cccccc;
    margin-bottom: 25px;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.ad-card:hover .ad-content p {
    color: #ffffff;
}

.ad-link {
    display: inline-block;
    background: linear-gradient(135deg, #ff9800, #ffb84d);
    color: #000;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(255, 152, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.ad-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #000;
    transition: left 0.3s ease;
    border-radius: 25px;
    z-index: -1;
}

.ad-link:hover {
    color: #ff9800;
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgba(255, 152, 0, 0.5);
}

.ad-link:hover::before {
    left: 0;
}

/* Responsive Ads */
@media (max-width: 768px) {
    .ads {
        padding: 40px 0;
    }

    .ad-card {
        padding: 30px;
    }

    .ad-content h3 {
        font-size: 20px;
    }

    .ad-content p {
        font-size: 14px;
    }

    .who-are-us-content {
        flex-direction: column;
    }

    .who-are-us-text {
        order: 2;
    }

    .who-are-us-video {
        order: 1;
        margin-bottom: 40px;
    }
}

/* ===== WHO ARE US VIDEO SECTION ===== */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.whoAreUsVideo {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
}

.whoAreUsVideo::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 152, 0, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: float 6s ease-in-out infinite;
}

.whoAreUsVideo::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 152, 0, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: float 8s ease-in-out infinite reverse;
}

.who-are-us-content {
    display: flex;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.who-are-us-text {
    flex: 1;
    animation: fadeInLeft 0.8s ease-out;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ff9800, #ffb84d);
    color: #000;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: bold;
    margin-bottom: 20px;
    animation: slideInUp 0.6s ease-out;
}

.who-are-us-title {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #ffffff;
    animation: fadeInDown 0.8s ease-out 0.2s both;
    background: linear-gradient(135deg, #ff9800 0%, #ffb84d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.who-are-us-description {
    font-size: 16px;
    color: #cccccc;
    line-height: 1.8;
    margin-bottom: 35px;
    animation: fadeInDown 0.8s ease-out 0.3s both;
}

.who-are-us-features {
    display: flex;
    flex-direction: column;
    gap: 18px;
    animation: fadeInDown 0.8s ease-out 0.4s both;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: rgba(255, 152, 0, 0.05);
    border-left: 4px solid #ff9800;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-item:hover {
    background: rgba(255, 152, 0, 0.1);
    border-left-color: #ffb84d;
    transform: translateX(10px);
    box-shadow: 0 4px 15px rgba(255, 152, 0, 0.2);
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    min-width: 30px;
    background: linear-gradient(135deg, #ff9800, #ffb84d);
    color: #000;
    font-weight: bold;
    border-radius: 50%;
    font-size: 18px;
}

.feature-text {
    color: #ffffff;
    font-weight: 500;
    transition: color 0.3s ease;
}

.feature-item:hover .feature-text {
    color: #ffb84d;
}

.who-are-us-video {
    flex: 1;
    animation: fadeInRight 0.8s ease-out;
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: scaleIn 0.8s ease-out 0.2s both;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.video-wrapper:hover iframe {
    box-shadow: inset 0 0 0 2px #ff9800;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 152, 0, 0.1) 0%, transparent 100%);
    border-radius: 15px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-wrapper:hover .video-overlay {
    opacity: 1;
}

/* Responsive Video Section */
@media (max-width: 1024px) {
    .whoAreUsVideo {
        padding: 60px 0;
    }

    .who-are-us-content {
        gap: 40px;
    }

    .who-are-us-title {
        font-size: 36px;
    }

    .who-are-us-description {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .whoAreUsVideo {
        padding: 40px 0;
    }

    .who-are-us-content {
        flex-direction: column;
        gap: 30px;
    }

    .who-are-us-text {
        order: 2;
    }

    .who-are-us-video {
        order: 1;
        margin-bottom: 20px;
    }

    .who-are-us-title {
        font-size: 28px;
    }

    .who-are-us-description {
        font-size: 14px;
    }

    .feature-item {
        padding: 12px 15px;
        font-size: 14px;
    }

    .search-input {
        font-size: 14px;
    }

    .results-list {
        max-height: 400px;
    }
}

/* ===== SEARCH BAR SECTION ===== */
@keyframes searchSlideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes resultPopIn {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(-10px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.searchBar {
    padding: 40px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    position: relative;
    border-bottom: 1px solid #2a2a2a;
}

.search-wrapper {
    max-width: 600px;
    margin: 0 auto;
    animation: searchSlideDown 0.6s ease-out;
}

.search-container {
    display: flex;
    gap: 0;
    border-radius: 50px;
    border: 2px solid #ff9800;
    background: #1a1a1a;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(255, 152, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.search-container:focus-within {
    box-shadow: 0 15px 50px rgba(255, 152, 0, 0.3);
    border-color: #ffb84d;
}

.search-input {
    flex: 1;
    padding: 16px 25px;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 16px;
    outline: none;
    transition: all 0.3s ease;
}

.search-input::placeholder {
    color: #888888;
}

.search-input:focus {
    color: #ffb84d;
}

.search-btn {
    padding: 0 25px;
    background: linear-gradient(135deg, #ff9800, #ffb84d);
    border: none;
    color: #000;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-btn:hover {
    background: linear-gradient(135deg, #ffb84d, #ff9800);
    transform: scale(1.05);
}

.search-btn:active {
    transform: scale(0.95);
}

.search-results {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 600px;
    margin-top: 10px;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    border: 2px solid #ff9800;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7);
    z-index: 100;
    animation: resultPopIn 0.4s ease-out;
}

.results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    border-bottom: 1px solid #3a3a3a;
    background: linear-gradient(135deg, rgba(255, 152, 0, 0.1) 0%, transparent 100%);
}

.results-header h3 {
    font-size: 18px;
    color: #ff9800;
    margin: 0;
}

.results-count {
    background: #ff9800;
    color: #000;
    padding: 4px 12px;
    border-radius: 12px;
    font-weight: bold;
    font-size: 12px;
}

.results-list {
    max-height: 500px;
    overflow-y: auto;
    padding: 10px;
}

.results-list::-webkit-scrollbar {
    width: 6px;
}

.results-list::-webkit-scrollbar-track {
    background: transparent;
}

.results-list::-webkit-scrollbar-thumb {
    background: #ff9800;
    border-radius: 3px;
}

.result-item {
    padding: 15px;
    margin: 8px 0;
    background: rgba(255, 152, 0, 0.05);
    border-left: 4px solid #ff9800;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: resultPopIn 0.4s ease-out;
    display: flex;
    gap: 15px;
    align-items: center;
}

.result-item:hover {
    background: rgba(255, 152, 0, 0.1);
    transform: translateX(8px);
    box-shadow: 0 4px 15px rgba(255, 152, 0, 0.2);
}

.result-item img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 6px;
}

.result-info {
    flex: 1;
    min-width: 0;
}

.result-title {
    font-size: 14px;
    color: #ffb84d;
    margin: 0 0 5px 0;
    font-weight: bold;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.result-price {
    font-size: 13px;
    color: #ff9800;
    font-weight: bold;
}

.no-results {
    padding: 30px 20px;
    text-align: center;
    color: #999999;
}

.no-results-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.no-results p {
    margin: 0;
    font-size: 14px;
}

/* Search responsive */
@media (max-width: 768px) {
    .searchBar {
        padding: 30px 0;
    }

    .search-wrapper {
        padding: 0 10px;
    }

    .search-input {
        padding: 14px 20px;
        font-size: 14px;
    }

    .search-btn {
        padding: 0 20px;
    }

    .search-results {
        width: 95%;
        max-height: 400px;
    }

    .result-item {
        padding: 12px;
        font-size: 13px;
    }

    .result-item img {
        width: 40px;
        height: 40px;
    }
}
