/* Font Awesome CDN */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

/* SweetAlert2 CDN */
@import url('https://cdn.jsdelivr.net/npm/sweetalert2@11.10.1/dist/sweetalert2.min.css');

/* Reset CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 14px;
}

.contact-info span {
    margin-right: 20px;
    color: #666;
}

.header-actions a {
    margin-left: 20px;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.header-actions a:hover {
    color: #7dd3c0;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo img {
    height: 50px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: #666;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #7dd3c0;
}

.search-box {
    display: flex;
    align-items: center;
}

.search-box input {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 25px;
    outline: none;
    width: 200px;
}

.search-box button {
    background: none;
    border: none;
    margin-left: -35px;
    cursor: pointer;
    font-size: 16px;
}

/* Hero Section */
.hero {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.hero-slider {
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50px;
    transform: translateY(-50%);
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.slide-content h2 {
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: normal;
}

.slide-content h1 {
    font-size: 72px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #ffd700;
}

.cta-btn {
    background: #7dd3c0;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 18px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.cta-btn:hover {
    background: #6bc4b0;
}

.hero-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
}

.hero-nav button {
    background: rgba(255,255,255,0.7);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    transition: background 0.3s;
}

.hero-nav button:hover {
    background: rgba(255,255,255,0.9);
}

/* About Section */
.about-section {
    padding: 80px 0;
    text-align: center;
    background: #f8f9fa;
}

.about-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #7dd3c0;
    font-weight: 300;
}

.about-section p {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto;
    color: #666;
    line-height: 1.8;
}

/* Featured Products */
.featured-products {
    padding: 80px 0;
}

.featured-products h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 50px;
    color: #666;
    font-weight: 300;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.product-item {
    text-align: center;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    position: relative;
}

.product-item:hover {
    transform: translateY(-5px);
}

.product-item.clickable {
    cursor: pointer;
}

.product-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

/* Product Badges */
.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0,0,0,0.8);
    color: white;
    padding: 8px;
    border-radius: 50%;
    font-size: 16px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    width: 35px;
    height: 35px;
}

.product-badge i {
    font-size: 16px;
}

/* Badge Renkleri */
.badge-new {
    background: linear-gradient(135deg, #ff6b6b, #ff8e53);
    animation: pulse 2s infinite;
}

.badge-popular {
    background: linear-gradient(135deg, #4ecdc4, #44a08d);
}

.badge-discount {
    background: linear-gradient(135deg, #f093fb, #f5576c);
}

.badge-limited {
    background: linear-gradient(135deg, #ffeaa7, #fdcb6e);
    color: #2d3436;
}

.badge-warning {
    background: linear-gradient(135deg, #fdcb6e, #e17055);
}

.badge-out {
    background: linear-gradient(135deg, #636e72, #2d3436);
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Multiple Badges */
.product-badges {
    position: absolute;
    top: 15px;
    left: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 10;
}

.product-item h3 {
    padding: 20px 20px 10px 20px;
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
}

.product-item .product-price {
    font-size: 20px;
    color: #7dd3c0;
    font-weight: bold;
    margin-bottom: 30px;
    padding: 0 20px 20px 20px;
}

.product-item .price {
    font-size: 20px;
    color: #7dd3c0;
    font-weight: bold;
    margin-bottom: 30px;
    padding: 0 20px 20px 20px;
}

.add-to-cart {
    background: #7dd3c0;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 5px;
    cursor: pointer;
    margin-bottom: 20px;
    transition: background 0.3s;
}

.add-to-cart:hover {
    background: #6bc4b0;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background: #f8f9fa;
}

.testimonials h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 50px;
    color: #666;
    font-weight: 300;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.stars {
    color: #ffd700;
    margin-bottom: 15px;
    text-align: center;
}

.stars i {
    margin-right: 3px;
}

.testimonial {
    text-align: center;
    padding: 40px;
}

.testimonial blockquote {
    font-size: 18px;
    font-style: italic;
    margin-bottom: 20px;
    color: #666;
    position: relative;
}

.testimonial blockquote:before,
.testimonial blockquote:after {
    content: '"';
    font-size: 48px;
    color: #7dd3c0;
    position: absolute;
}

.testimonial blockquote:before {
    left: -20px;
    top: -10px;
}

.testimonial blockquote:after {
    right: -20px;
    bottom: -30px;
}

.testimonial cite {
    color: #333;
    font-weight: bold;
}

/* Gallery */
.gallery {
    padding: 80px 0;
}

.gallery h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 50px;
    color: #666;
    font-weight: 300;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-grid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s;
}

.gallery-grid img:hover {
    transform: scale(1.05);
}

/* Footer */
.footer {
    background: #333;
    color: #fff;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    margin-bottom: 20px;
    color: #7dd3c0;
}

.newsletter {
    display: flex;
    margin-bottom: 20px;
}

.newsletter input {
    flex: 1;
    padding: 12px;
    border: 1px solid #555;
    background: #444;
    color: #fff;
    border-radius: 5px 0 0 5px;
}

.newsletter button {
    background: #7dd3c0;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #7dd3c0;
}

.social-links a {
    display: block;
    margin-bottom: 10px;
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #7dd3c0;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #555;
    color: #999;
}

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.whatsapp-btn a {
    background: #25D366;
    color: white;
    padding: 15px 20px;
    border-radius: 25px;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: transform 0.3s;
}

.whatsapp-btn a:hover {
    transform: scale(1.05);
}

/* Cart Counter */
#cart-count {
    background: #7dd3c0;
    color: white;
    border-radius: 10px;
    padding: 2px 6px;
    font-size: 12px;
    min-width: 18px;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-nav {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .hero {
        height: 400px;
    }
    
    .slide-content {
        left: 20px;
        right: 20px;
    }
    
    .slide-content h1 {
        font-size: 48px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .header-top {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .slide-content h1 {
        font-size: 36px;
    }
    
    .about-section h2 {
        font-size: 28px;
    }
    
    .featured-products h2 {
        font-size: 24px;
    }
}
