@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
    color: #1a1a1a;
}

.top-marquee-bar {
    padding: 8px 0;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.5px;
    overflow: hidden;
    white-space: nowrap;
    display: block;
}

.top-marquee-content {
    display: inline-block;
    white-space: nowrap;
    padding-left: 100%;
    animation: marquee 25s linear infinite;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

.announcement-bar {
    border-bottom: 1px solid #ebebeb;
    background-color: #fff;
    padding: 6px 0;
}

.top-menu-link {
    color: #555;
    font-weight: 500;
    text-decoration: none;
    font-size: 11px;
    transition: color 0.3s;
    white-space: nowrap;
}

.top-menu-link:hover {
    color: #000;
}

.top-social-icon {
    color: #555;
    font-size: 12px;
    text-decoration: none;
    transition: color 0.3s;
}

.top-social-icon:hover {
    color: #000;
}

.announcement-slider-wrapper {
    position: relative;
    height: 20px;
    overflow: hidden;
    width: 100%;
}

.announcement-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 12px;
    font-weight: 500;
    color: #333;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    white-space: nowrap;
}

.announcement-item.active {
    opacity: 1;
    transform: translateX(0);
}

.announcement-item.exit {
    opacity: 0;
    transform: translateX(-100%);
}

.nav-link {
    font-size: 14.5px;
    transition: all 0.3s ease;
    padding: 8px 16px !important;
}

.nav-link:hover {
    color: #000 !important;
    opacity: 0.6;
}

.dropdown-menu {
    border-radius: 4px;
    border: 1px solid #eee;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    margin-top: 15px;
    padding: 10px 0;
    border-top: 2px solid #000;
}

.dropdown-item {
    font-size: 14px;
    padding: 8px 20px;
    font-weight: 500;
}

.dropdown-item:hover {
    background-color: #f8f9fa;
}

.icon-badge {
    font-size: 0.65rem;
    padding: 0.35em 0.55em;
    background-color: #d93838 !important;
}

.offcanvas-start {
    border-right: none;
    box-shadow: 5px 0 15px rgba(0,0,0,0.05);
}

.story-section {
    padding: 35px 0;
    background-color: #fff;
    border-bottom: 1px solid #f9f9f9;
}

.story-container {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    padding-bottom: 15px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    width: fit-content;
    max-width: 100%;
    margin: 0 auto;
}

.story-container::-webkit-scrollbar {
    display: none;
}

.story-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    min-width: 85px;
    transition: transform 0.2s ease;
}

.story-item:hover {
    transform: scale(1.05);
}

.story-circle {
    width: 85px;
    height: 85px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 13px;
    text-align: center;
    padding: 8px;
    margin-bottom: 12px;
    border: 2px solid #fff;
    outline: 2px solid #eaeaea;
    overflow: hidden;
    transition: outline-color 0.3s ease;
}

.story-item:hover .story-circle {
    outline: 2px solid #111;
}

.story-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.story-title {
    color: #222;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
}

.hero-slider {
    position: relative;
    background-color: #f4f6f8;
}

.hero-slider .carousel-item {
    height: 500px;
}

.hero-slider .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right top;
}

.hero-slider-content {
    position: absolute;
    top: 50%;
    left: 8%;
    transform: translateY(-50%);
    max-width: 450px;
    z-index: 10;
}

.hero-slider-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 1.2rem;
    line-height: 1.2;
}

.hero-slider-desc {
    font-size: 1rem;
    color: #333;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.btn-hero {
    background-color: #000;
    color: #fff;
    padding: 12px 28px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    border: 1px solid #000;
}

.btn-hero:hover {
    background-color: #fff;
    color: #000;
}

.hero-slider .carousel-indicators {
    bottom: 15px;
    margin-bottom: 0;
}

.hero-slider .carousel-indicators button {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #000;
    opacity: 0.3;
    margin: 0 4px;
    border: none;
    transition: all 0.3s ease;
}

.hero-slider .carousel-indicators button.active {
    opacity: 0.8;
    transform: scale(1.3);
}

.special-categories-section {
    padding: 60px 0 30px 0;
    background-color: #ffffff;
}

.section-header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.slider-nav-gap {
    display: flex;
    gap: 8px;
}

.slider-nav-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid #e0e0e0;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #111;
}

.slider-nav-btn:hover {
    border-color: #111;
    background: #111;
    color: #fff;
}

.section-title {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin: 0;
    margin-left: 15px;
    color: #000;
}

.section-title-center {
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px;
    color: #111;
}

.section-subtitle-center {
    font-size: 14px;
    text-align: center;
    color: #666;
    margin-bottom: 40px;
}

.category-slider-container {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 10px;
}

.category-slider-container::-webkit-scrollbar {
    display: none;
}

.special-category-card {
    min-width: calc(25% - 15px);
    border-radius: 6px;
    overflow: hidden;
    position: relative;
    display: block;
    background-color: #f9f9f9;
    aspect-ratio: 3/4;
    transition: transform 0.3s ease;
}

.special-category-card:hover .special-category-img {
    transform: scale(1.04);
}

.special-category-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.special-category-placeholder, .trend-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f4f4f4;
    color: #ccc;
}

.special-category-label {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background-color: #ffffff;
    color: #111;
    padding: 8px 18px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 2px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.trends-section, .discount-section {
    padding: 40px 0;
    background-color: #fff;
}

.trend-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}

.trend-card {
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 3/4;
    display: block;
    background-color: #f9f9f9;
}

.trend-media {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.trend-card:hover .trend-media {
    transform: scale(1.03);
}

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

.product-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.product-img-wrapper {
    position: relative;
    aspect-ratio: 3/4;
    border-radius: 8px;
    overflow: hidden;
    background-color: #f9f9f9;
    margin-bottom: 15px;
}

.product-img-main {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.5s ease;
}

.product-img-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.product-card:hover .product-img-main {
    opacity: 0;
}

.product-card:hover .product-img-hover {
    opacity: 1;
}

.discount-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #d93838;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 4px;
    z-index: 2;
}

.product-title {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-price-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-price {
    font-size: 16px;
    font-weight: 700;
    color: #111;
}

.product-price-old {
    font-size: 13px;
    text-decoration: line-through;
    color: #999;
}

.testimonials-section {
    padding: 60px 0;
    background-color: #fff;
}

.testimonial-wrapper {
    position: relative;
    padding: 0 40px;
}

.testimonial-slider-container {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 10px 5px;
}

.testimonial-slider-container::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    min-width: calc(33.333% - 17px);
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
    display: flex;
    flex-direction: column;
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.testimonial-name {
    font-size: 14px;
    font-weight: 700;
    color: #111;
    margin: 0;
}

.testimonial-subtitle {
    font-size: 12px;
    color: #888;
    margin: 2px 0 8px 0;
}

.testimonial-stars {
    color: #ff9800;
    font-size: 13px;
    letter-spacing: 1px;
}

.platform-badge {
    font-size: 10px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.testimonial-comment {
    font-size: 13.5px;
    color: #444;
    line-height: 1.6;
    margin: 0;
}

.testi-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #eee;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #111;
    z-index: 2;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.testi-nav-btn:hover {
    border-color: #111;
    background: #111;
    color: #fff;
}

.testi-prev { left: -10px; }
.testi-next { right: -10px; }

.trust-badges-section {
    padding: 20px 0 60px 0;
    background-color: #fff;
}

.trust-badge-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.trust-badge-card {
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    background: #fff;
    transition: transform 0.3s ease;
}

.trust-badge-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.04);
}

.trust-badge-icon {
    width: 50px;
    height: 50px;
    object-fit: contain;
    margin-bottom: 15px;
}

.trust-badge-title {
    font-size: 15px;
    font-weight: 700;
    color: #111;
    margin-bottom: 8px;
}

.trust-badge-desc {
    font-size: 12px;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

/* --- FOOTER TASARIMI --- */
.footer-area {
    padding: 80px 0 20px;
    background-color: #fff;
    border-top: 1px solid #eaeaea;
}

.footer-widget-title {
    font-size: 15px;
    font-weight: 700;
    color: #111;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-link-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-link-list li {
    margin-bottom: 14px;
}

.footer-link-list a {
    color: #555;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s;
}

.footer-link-list a:hover {
    color: #000;
}

.footer-contact-info {
    font-size: 13.5px;
    color: #555;
    margin-bottom: 25px;
    line-height: 1.8;
}

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

.footer-social-icons a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #f4f4f4;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    transition: all 0.3s;
    text-decoration: none;
    font-size: 14px;
}

.footer-social-icons a:hover {
    background: #111;
    color: #fff;
}

.newsletter-form {
    display: flex;
    align-items: center;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
    margin-top: 20px;
}

.newsletter-input {
    border: none;
    padding: 14px 16px;
    font-size: 13.5px;
    width: 100%;
    outline: none;
    background: #fff;
}

.newsletter-btn {
    background: #000;
    color: #fff;
    border: none;
    padding: 14px 24px;
    font-size: 13.5px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    white-space: nowrap;
}

.newsletter-btn:hover {
    background: #333;
}

.etbis-container {
    display: inline-block;
    padding: 8px;
    border: 1px solid #eee;
    border-radius: 8px;
    background: #fff;
    transition: transform 0.3s;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}

.etbis-container:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

.footer-bottom {
    padding: 25px 0;
    border-top: 1px solid #f1f1f1;
    margin-top: 60px;
    font-size: 13px;
    color: #777;
    font-weight: 500;
}

@media (max-width: 991px) {
    .dropdown-menu {
        border: none;
        box-shadow: none;
        padding-left: 15px;
        margin-top: 0;
        background-color: #fafafa;
    }
    .offcanvas-body .nav-link {
        border-bottom: 1px solid #f1f1f1;
        padding: 12px 0 !important;
    }
    .story-section {
        padding: 25px 0 15px 0;
    }
    .story-container {
        gap: 15px;
    }
    .story-item {
        min-width: 75px;
    }
    .story-circle {
        width: 75px;
        height: 75px;
    }
    .story-title {
        font-size: 12px;
    }
    .hero-slider .carousel-item {
        height: 400px;
    }
    .hero-slider-content {
        left: 5%;
        right: 5%;
        max-width: 100%;
        text-align: center;
        background: rgba(255, 255, 255, 0.85);
        padding: 25px 15px;
        border-radius: 8px;
    }
    .hero-slider-title {
        font-size: 1.8rem;
    }
    .hero-slider-desc {
        font-size: 0.95rem;
    }
    .special-category-card {
        min-width: calc(50% - 10px);
    }
    .special-categories-section {
        padding: 40px 0 20px 0;
    }
    .trend-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    .section-title-center {
        font-size: 20px;
    }
    .testimonial-card {
        min-width: calc(100% - 10px);
    }
    .testimonial-wrapper {
        padding: 0 10px;
    }
    .testi-nav-btn {
        display: none;
    }
    .trust-badge-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-area {
        padding: 50px 0 20px;
    }
}

@media (max-width: 575px) {
    .special-category-card {
        min-width: calc(80% - 10px);
    }
    .trust-badge-grid {
        grid-template-columns: 1fr;
    }
}