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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c2c2c;
    background-color: #faf8f5;
}

/* Top Header */
.top-header {
    background: #e31e24;
    padding: 0.5rem 0;
    border-bottom: 1px solid #c0392b;
}

.top-header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.discount-text {
    color: #ffffff;
    font-weight: bold;
    font-size: 0.9rem;
}

.customer-service {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: #ffffff;
}

.customer-service i {
    color: #f1c40f;
}

/* Main Header */
.header {
    background: #ffffff;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 10px;
}

/* Header Top Section */
.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #e8e0d5;
}

.logo-section .logo {
    text-decoration: none;
    display: block;
}

.logo-img {
    height: 50px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

.search-section {
    flex: 1;
    max-width: 400px;
    margin: 0 2rem;
}

.search-box {
    display: flex;
    border: 2px solid #e8e0d5;
    border-radius: 25px;
    overflow: hidden;
}

.search-input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: none;
    outline: none;
    font-size: 0.9rem;
}

.search-btn {
    background: #e31e24;
    color: white;
    border: none;
    padding: 0.75rem 1rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.search-btn:hover {
    background: #c0392b;
}

.user-section {
    display: flex;
    gap: 1rem;
}

.cart-btn, .user-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #2c2c2c;
    font-size: 0.8rem;
    transition: color 0.3s ease;
}

.cart-btn:hover, .user-btn:hover {
    color: #e31e24;
}

.cart-btn i, .user-btn i {
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
}

/* Main Navigation */
.main-nav {
    padding: 0.5rem 0;
    background: #ffffff;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0;
    justify-content: space-between;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: #2c2c2c;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.85rem;
    padding: 0.75rem 1rem;
    display: block;
    transition: color 0.3s ease;
    text-align: center;
}

.nav-link:hover {
    color: #e74c3c;
    background: #faf8f5;
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-radius: 8px;
    min-width: 250px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-content {
    padding: 1.5rem;
}

.dropdown-section {
    margin-bottom: 1.5rem;
}

.dropdown-section:last-child {
    margin-bottom: 0;
}

.dropdown-section h4 {
    color: #e31e24;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.dropdown-section ul {
    list-style: none;
}

.dropdown-section ul li {
    margin: 0.25rem 0;
}

.dropdown-section ul li a {
    color: #2c2c2c;
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.3s ease;
    display: block;
    padding: 0.25rem 0;
}

.dropdown-section ul li a:hover {
    color: #e31e24;
}

/* Quick Access Links */
.quick-access {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
    border-top: 1px solid #e8e0d5;
    flex-wrap: wrap;
    gap: 0.5rem;
    background: #ffffff;
    margin: 0 -20px;
    width: calc(100% + 40px);
}

.quick-access-item {
    flex: 1;
    min-width: 80px;
    text-align: center;
}

.quick-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #2c2c2c;
    font-size: 0.75rem;
    transition: all 0.3s ease;
    padding: 0.5rem;
    border-radius: 8px;
}

.quick-link:hover {
    color: #e31e24;
    background: #faf8f5;
}

.quick-link i {
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
}

.quick-link span {
    font-size: 0.7rem;
    line-height: 1.2;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: none;
    border: none;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #2c2c2c;
    margin: 3px 0;
    transition: 0.3s;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: #ffffff;
    padding: 2rem;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.mobile-menu.active {
    display: block;
    transform: translateY(0);
}

.mobile-menu ul {
    list-style: none;
}

.mobile-menu li {
    margin: 1rem 0;
}

.mobile-menu a {
    color: #2c2c2c;
    text-decoration: none;
    font-size: 1.1rem;
    display: block;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e8e0d5;
}

/* Slider Container */
.slider-container {
    max-width: 100%;
    margin: 2rem auto;
    padding: 0 20px;
}

.slider-title {
    text-align: center;
    margin-bottom: 2rem;
    color: #2c2c2c;
    font-size: 2rem;
    font-weight: 300;
}

.owl-carousel {
    overflow: hidden;
}

.owl-item {
    position: relative;
}

.slider-item {
    position: relative;
    overflow: hidden;
}

.slider-item img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.3s ease;
    display: block;
}

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

.slider-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: white;
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.slider-item:hover .slider-overlay {
    transform: translateY(0);
}

.slider-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.slider-overlay p {
    font-size: 1rem;
    opacity: 0.9;
}

/* Owl Carousel Custom Styles */
.owl-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
}

.owl-prev, .owl-next {
    background: transparent !important;
    color: #ffffff !important;
    width: 60px;
    height: 60px;
    border-radius: 0 !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    transition: all 0.3s ease;
    pointer-events: auto;
    box-shadow: none !important;
}

.owl-prev:hover, .owl-next:hover {
    background: transparent !important;
    color: #f8f9fa !important;
    transform: scale(1.2);
}

.owl-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 10;
}

.owl-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.7);
    margin: 0 5px;
    transition: background 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.9);
}

.owl-dot.active {
    background: #e31e24;
    border-color: #e31e24;
}

/* Products Slider Section */
.products-slider-section {
    max-width: 1400px;
    margin: 3rem auto;
    padding: 0 10px;
}

.products-swiper {
    padding: 20px 0;
}

.products-swiper .product-image {
    flex-shrink: 0;
    height: 280px;
    margin-bottom: 0;
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.products-swiper .product-img {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    object-fit: contain;
    background: #faf8f5;
    padding: 10px;
}

.swiper-slide {
    height: auto;
}

.product-card {
    background: #ffffff;
    border: 1px solid #e8e0d5;
    border-radius: 8px;
    padding: 10px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    position: relative;
    min-height: 320px;
}

.product-card:hover {
    background: #faf8f5;
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    border-color: #e74c3c;
}

.product-image {
    flex-shrink: 0;
    height: 280px;
    margin-bottom: 0;
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-link {
    display: flex;
    text-align: center;
    height: 100%;
    width: 100%;
    text-decoration: none;
    color: inherit;
}

.product-img {
    width: 100%;
    height: 100%;
    border-radius: 6px;
    object-fit: cover;
    background: #faf8f5;
    padding: 0;
}

.product-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.55), rgba(0,0,0,0));
    color: white;
    padding: 12px 14px;
    text-align: center;
    z-index: 2;
}

.product-info a {
    color: #fff;
    text-decoration: none;
}

.product-title {
    font-size: 0.95rem;
    line-height: 1.3;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-break: break-word;
}

.product-price {
    display: none;
}

/* Swiper Pagination */
.swiper-pagination {
    position: relative;
    margin-top: 20px;
}

.swiper-pagination-bullet {
    background: #e8e0d5;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: #e31e24;
}

/* Campaign Products Section */
.campaign-products-section {
    max-width: 1400px;
    margin: 3rem auto;
    padding: 0 10px;
}

.campaign-container {
    padding: 2rem;
}

.campaign-title {
    text-align: center;
    margin-bottom: 2rem;
    color: #2c2c2c;
    font-size: 2rem;
    font-weight: 600;
    border-bottom: 3px solid #e74c3c;
    padding-bottom: 1rem;
}

.campaign-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.campaign-item {
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.campaign-item:hover {
    transform: translateY(-5px);
}

.campaign-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.campaign-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

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

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

.campaign-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    padding: 1.5rem;
}

.campaign-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
}

.campaign-price {
    display: none;
}

.campaign-button {
    background: transparent;
    color: white;
    padding: 0.5rem 1.5rem;
    border: 2px solid white;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.campaign-button:hover {
    background: white;
    color: #2c2c2c;
}

/* Brand Carousel Section */
.brand-carousel-section {
    max-width: 1400px;
    margin: 3rem auto;
    padding: 0 10px;
    overflow: hidden;
}

.brand-carousel-container {
    position: relative;
    width: 100%;
}

.brand-carousel {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.brand-carousel-track {
    display: flex;
    animation: brandScroll 30s linear infinite;
    width: calc(200% + 20px);
}

.brand-item {
    flex-shrink: 0;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 300px;
    background: transparent;
}

.brand-logo {
    max-width: 100%;
    height: auto;
    transition: filter 0.3s ease;
    opacity: 1;
}

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

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

/* Pause animation on hover */
.brand-carousel:hover .brand-carousel-track {
    animation-play-state: paused;
}

/* New Products Section */
.new-products-section {
    max-width: 1400px;
    margin: 3rem auto;
    padding: 0 10px;
}

.new-products-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.new-product-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 350px;
    position: relative;
}

.new-product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.new-product-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.new-product-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

/* Content Sections (Legacy) */
.content-section {
    max-width: 1400px;
    margin: 3rem auto;
    padding: 0 10px;
}

.section-title {
    text-align: center;
    margin-bottom: 2rem;
    color: #2c2c2c;
    font-size: 2rem;
    font-weight: 300;
}

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

/* Footer */
.footer {
    background: #2c2c2c;
    color: #ffffff;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 10px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: #e74c3c;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin: 0.5rem 0;
}

.footer-section ul li a {
    color: #faf8f5;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #e31e24;
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #3c3c3c;
    color: #faf8f5;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-menu {
        gap: 0.5rem;
    }
    
    .nav-link {
        font-size: 0.75rem;
        padding: 0.5rem 0.5rem;
    }
    
    .quick-access {
        justify-content: center;
    }
    
    .quick-access-item {
        min-width: 70px;
    }
}

@media (max-width: 768px) {
    .top-header {
        display: none;
    }
    
    .campaign-products-section {
        margin: 2rem auto;
        padding: 0 15px;
    }
    
    .campaign-container {
        padding: 1.5rem;
    }
    
    .campaign-title {
        font-size: 1.5rem;
    }
    
    .campaign-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .campaign-image {
        height: 250px;
    }
    
    .brand-carousel-section {
        margin: 2rem auto;
        padding: 0 15px;
    }
    
    .brand-item {
        min-width: 200px;
        padding: 0 15px;
    }
    
    .brand-carousel-track {
        animation-duration: 20s;
    }
    
    .header-top {
        flex-direction: column;
        gap: 1rem;
    }
    
    .search-section {
        margin: 0;
        max-width: 100%;
    }
    
    .nav-menu {
        display: none;
    }
    
    .quick-access {
        display: none;
    }

    .hamburger {
        display: flex;
        position: absolute;
        top: 1rem;
        right: 20px;
    }

    .slider-title {
        font-size: 1.5rem;
    }

    .slider-item img {
        height: 250px;
    }

    .owl-prev, .owl-next {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

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

    .header-container {
        padding: 0 15px;
    }

    .slider-container {
        padding: 0 15px;
    }

    .content-section {
        padding: 0 15px;
    }

    .products-slider-section {
        padding: 0 15px;
    }

    .product-card {
        padding: 15px;
        min-height: 340px;
    }

    .product-image {
        height: 160px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .products-swiper .product-image {
        height: 160px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .product-title a {
        font-size: 0.8rem;
    }

    .product-price {
        font-size: 1rem;
    }
    
    .new-products-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .new-product-img {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .logo-img {
        height: 40px;
        max-width: 150px;
    }

    .slider-item img {
        height: 200px;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }
    
    .user-section {
        gap: 0.5rem;
    }
    
    .cart-btn span, .user-btn span {
        font-size: 0.7rem;
    }
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.8s ease-in;
}

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

.slide-in {
    animation: slideIn 0.6s ease-out;
}

@keyframes slideIn {
    from {
        transform: translateX(-100%);
    }
    to {
        transform: translateX(0);
    }
}

/* Breadcrumb */
.breadcrumb-container {
    background: #faf8f5;
    padding: 1rem 0;
    border-bottom: 1px solid #e8e0d5;
}

.breadcrumb {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 10px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: #e31e24;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #c0392b;
}

.breadcrumb .separator {
    color: #999;
}

.breadcrumb .current {
    color: #2c2c2c;
    font-weight: 500;
}

/* Product Detail Section */
.product-detail-section {
    max-width: 1400px;
    margin: 2rem auto;
    padding: 0 10px;
}

.product-detail-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

/* Product Images */
.product-images {
    position: sticky;
    top: 100px;
}

.main-image {
    margin-bottom: 1rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.main-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.3s ease;
    display: block;
}

.main-image img:hover {
    transform: scale(1.02);
}

.thumbnail-images {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.thumbnail {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.thumbnail.active {
    border-color: #e31e24;
}

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

.thumbnail:hover {
    transform: scale(1.05);
}

/* Product Info Detail */
.product-info-detail {
    padding: 1rem 0;
}

.product-info-detail .product-title {
    font-size: 2rem;
    color: #2c2c2c;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.brand {
    color: #666;
    font-size: 0.9rem;
}

.discount-badge {
    background: #e31e24;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.product-pricing {
    margin-bottom: 2rem;
}

.original-price {
    color: #999;
    text-decoration: line-through;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.sale-price {
    color: #e31e24;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.sepet-price {
    color: #2c2c2c;
    font-size: 1.1rem;
}

.product-options {
    margin-bottom: 2rem;
}

.color-options, .quantity-selector {
    margin-bottom: 1.5rem;
}

.color-options h4, .quantity-selector h4 {
    margin-bottom: 0.5rem;
    color: #2c2c2c;
    font-size: 1rem;
}

.color-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.color-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    border: 2px solid #e8e0d5;
    background: white;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.8rem;
    min-width: 60px;
}

.color-preview-img {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
    border: 2px solid #e8e0d5;
    transition: all 0.3s ease;
}

.color-btn.active, .color-btn:hover {
    border-color: #e31e24;
    background: #faf8f5;
    color: #2c2c2c;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.color-btn.active .color-preview-img, .color-btn:hover .color-preview-img {
    border-color: #e31e24;
    transform: scale(1.05);
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    max-width: 150px;
}

.qty-btn {
    width: 40px;
    height: 40px;
    border: 1px solid #e8e0d5;
    background: white;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.qty-btn:hover {
    background: #e31e24;
    color: white;
    border-color: #e31e24;
}

#quantity-input {
    width: 60px;
    height: 40px;
    text-align: center;
    border: 1px solid #e8e0d5;
    border-radius: 8px;
    font-size: 1rem;
}

.product-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.action-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
}

.trendyol-btn {
    flex: 1;
    padding: 1rem 2rem;
    background: #e31e24;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.trendyol-btn:hover {
    background: #e31e24;
    transform: translateY(-2px);
}

.add-to-cart-btn, .favorite-btn, .compare-btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.add-to-cart-btn {
    background: #e31e24;
    color: white;
    flex: 2;
}

.add-to-cart-btn:hover {
    background: #c0392b;
    transform: translateY(-2px);
}

.favorite-btn, .compare-btn {
    background: white;
    color: #2c2c2c;
    border: 1px solid #e8e0d5;
    flex: 1;
}

.favorite-btn:hover, .compare-btn:hover {
    background: #faf8f5;
    color: #e31e24;
}

.product-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: #faf8f5;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #2c2c2c;
}

.feature i {
    color: #e31e24;
    font-size: 1.2rem;
}

.stock-info {
    margin-bottom: 2rem;
}

.stock-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 500;
}

.stock-status.in-stock {
    color: #27ae60;
    background: #d5f4e6;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: 600;
}

.stock-status.in-stock i {
    color: #27ae60;
}

/* Product Description Section */
.product-description-section {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 20px;
}

.description-container {
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    overflow: hidden;
}

.description-tabs {
    display: flex;
    border-bottom: 1px solid #e8e0d5;
}

.tab-btn {
    flex: 1;
    padding: 1rem 2rem;
    border: none;
    background: white;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}

.tab-btn.active {
    color: #e31e24;
    border-bottom-color: #e31e24;
    background: #faf8f5;
}

.tab-btn:hover {
    background: #faf8f5;
}

.tab-content {
    padding: 2rem;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

.tab-pane h3 {
    color: #2c2c2c;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.tab-pane h4 {
    color: #2c2c2c;
    margin: 1.5rem 0 0.5rem 0;
    font-size: 1.2rem;
}

.tab-pane ul {
    list-style: none;
    padding-left: 0;
}

.tab-pane ul li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    padding-left: 1.5rem;
}

.tab-pane ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #e31e24;
    font-weight: bold;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
}

.specs-table tr {
    border-bottom: 1px solid #f0f0f0;
}

.specs-table td {
    padding: 1rem 0;
    vertical-align: top;
}

.specs-table td:first-child {
    width: 40%;
    font-weight: 500;
    color: #2c2c2c;
}

.specs-table td:last-child {
    color: #666;
}

.no-reviews {
    text-align: center;
    padding: 3rem 0;
    color: #666;
}

.no-reviews i {
    font-size: 3rem;
    color: #ddd;
    margin-bottom: 1rem;
}

.write-review-btn {
    margin-top: 1rem;
    padding: 0.75rem 2rem;
    background: #e31e24;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.3s ease;
}

.write-review-btn:hover {
    background: #c0392b;
}

/* Related Products Section */
.related-products-section {
    max-width: 1400px;
    margin: 3rem auto;
    padding: 0 10px;
}

.related-container {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.related-swiper {
    padding: 20px 0;
}

/* Responsive Design for Product Detail */
@media (max-width: 768px) {
    .product-detail-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .product-images {
        position: static;
    }
    
    .main-image img {
        height: 300px;
    }
    
    .thumbnail {
        width: 60px;
        height: 60px;
    }
    
    .product-info-detail .product-title {
        font-size: 1.5rem;
    }
    
    .product-actions {
        flex-direction: column;
    }
    
    .add-to-cart-btn, .favorite-btn, .compare-btn {
        flex: none;
    }
    
    .product-features {
        grid-template-columns: 1fr;
    }
    
    .description-tabs {
        flex-direction: column;
    }
    
    .tab-btn {
        text-align: left;
        border-bottom: 1px solid #e8e0d5;
        border-right: none;
    }
    
    .tab-content {
        padding: 1rem;
    }
    
    .breadcrumb {
        font-size: 0.8rem;
        flex-wrap: wrap;
    }
}

/* Category Page Styles */
.category-page-container {
    max-width: 1400px;
    margin: 2rem auto;
    padding: 0 10px;
}

.category-content {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 2rem;
    align-items: start;
}

/* Categories Sidebar */
.categories-sidebar {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    position: sticky;
    top: 100px;
    height: fit-content;
}

.categories-title {
    font-size: 1.2rem;
    color: #2c2c2c;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e74c3c;
}

.categories-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.category-item {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    text-decoration: none;
    color: #2c2c2c;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    font-weight: 500;
}

.category-item:hover {
    background: #faf8f5;
    color: #e31e24;
    transform: translateX(5px);
}

.category-item i {
    margin-right: 0.75rem;
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
    color: #e31e24;
}

.category-item span {
    flex: 1;
}

/* Filters Sidebar */
.filters-sidebar {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    position: sticky;
    top: 100px;
    height: fit-content;
}

.filter-title {
    font-size: 1.2rem;
    color: #2c2c2c;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e31e24;
}

.filter-group {
    margin-bottom: 1.5rem;
}

.filter-group h4 {
    font-size: 1rem;
    color: #2c2c2c;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.filter-options {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.filter-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.9rem;
    color: #2c2c2c;
    transition: color 0.3s ease;
}

.filter-option:hover {
    color: #e31e24;
}

.filter-option input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 16px;
    height: 16px;
    border: 2px solid #e8e0d5;
    border-radius: 3px;
    position: relative;
    transition: all 0.3s ease;
}

.filter-option input[type="checkbox"]:checked + .checkmark {
    background: #e31e24;
    border-color: #e31e24;
}

.filter-option input[type="checkbox"]:checked + .checkmark::after {
    content: "✓";
    position: absolute;
    top: -2px;
    left: 1px;
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.filter-btn {
    width: 100%;
    padding: 0.75rem;
    background: #e74c3c;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease;
}

.filter-btn:hover {
    background: #c0392b;
}

/* Products Section */
.products-section {
    flex: 1;
}

.products-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.sort-select {
    padding: 0.5rem 1rem;
    border: 1px solid #e8e0d5;
    border-radius: 6px;
    font-size: 0.9rem;
    background: white;
    cursor: pointer;
}

.view-options {
    display: flex;
    gap: 0.5rem;
}

.view-btn {
    width: 40px;
    height: 40px;
    border: 1px solid #e8e0d5;
    background: white;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: #2c2c2c;
}

.view-btn.active, .view-btn:hover {
    background: #e31e24;
    color: white;
    border-color: #e31e24;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.product-item {
    background: transparent;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 350px;
    position: relative;
}

.product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.product-image {
    position: relative;
    height: 350px;
    overflow: hidden;
}

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

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

.product-badges {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.badge {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    color: white;
}

.badge.discount {
    background: #e74c3c;
}

.badge.out-of-stock {
    background: #95a5a6;
}

.product-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.55), rgba(0,0,0,0));
    color: white;
    padding: 12px 14px;
    text-align: center;
    z-index: 2;
}

.product-info a {
    color: #fff;
    text-decoration: none;
}

.product-brand {
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-title {
    font-size: 0.95rem;
    line-height: 1.3;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-break: break-word;
}

.product-actions {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.trendyol-btn {
    flex: 1;
    padding: 0.75rem 1rem;
    background: #e76b3c;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.trendyol-btn:hover {
    background: #e76b3c;
    transform: translateY(-2px);
}

.trendyol-btn.disabled {
    background: #95a5a6;
    cursor: not-allowed;
    transform: none;
}

.trendyol-btn.disabled:hover {
    background: #95a5a6;
    transform: none;
}

.favorite-btn {
    width: 40px;
    height: 40px;
    border: 1px solid #e8e0d5;
    background: white;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: #2c2c2c;
}

.favorite-btn:hover {
    background: #e74c3c;
    color: white;
    border-color: #e74c3c;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.page-btn {
    width: 40px;
    height: 40px;
    border: 1px solid #e8e0d5;
    background: white;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: #2c2c2c;
    font-weight: 500;
}

.page-btn.active, .page-btn:hover {
    background: #e31e24;
    color: white;
    border-color: #e31e24;
}

.page-btn.next {
    width: auto;
    padding: 0 1rem;
}

/* Responsive Design for Category Page */
@media (max-width: 1024px) {
    .category-content {
        grid-template-columns: 200px 1fr;
        gap: 1.5rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .category-content {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .filters-sidebar {
        position: static;
        order: 2;
    }
    
    .products-header {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }
    
    .sort-options {
        width: 100%;
    }
    
    .sort-select {
        width: 100%;
    }
    
    .view-options {
        justify-content: center;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 1rem;
    }
    
    .product-image {
        height: 200px;
    }
    
    .product-info {
        padding: 1rem;
    }
    
    .product-title {
        font-size: 0.9rem;
        min-height: 2.4rem;
    }
    
    .trendyol-btn {
        font-size: 0.8rem;
        padding: 0.5rem 0.75rem;
    }
    
    .favorite-btn {
        width: 35px;
        height: 35px;
    }
}

/* Kişiselleştirilmiş Ürünler Section */
.personalized-products-section {
    max-width: 1400px;
    margin: 3rem auto;
    padding: 0 10px;
}

.personalized-container {
    padding: 2rem;
}

.personalized-header {
    text-align: center;
    margin-bottom: 2rem;
}

.personalized-title {
    color: #2c2c2c;
    font-size: 2rem;
    font-weight: 600;
    border-bottom: 3px solid #e74c3c;
    padding-bottom: 1rem;
    margin: 0;
}

.personalized-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.personalized-item {
    display: flex;
    flex-direction: column;
}

/* Annelerin En Sık Tercihi Banner */
.personalized-banner {
    height: 100%;
}

.banner-title {
    color: #2c2c2c;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
}

.banner-link {
    display: block;
    text-decoration: none;
    height: 100%;
}

.banner-image {
    height: 300px;
    overflow: hidden;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

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

.banner-link:hover .banner-img {
    transform: scale(1.05);
}

/* İndirimli Bazı Ürünler */
.discounted-products {
    height: 100%;
}

.discounted-title {
    color: #2c2c2c;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
}

.discounted-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.discounted-product {
    display: flex;
    flex-direction: column;
}

.product-card-discounted {
    background: white;
    border: 1px solid #e8e0d5;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card-discounted:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.product-image-discounted {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.product-link {
    display: block;
    height: 100%;
}

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

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

.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
}

.discount-badge {
    background: #e74c3c;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: bold;
}

.product-info-discounted {
    padding: 1rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-title-discounted {
    margin: 0 0 1rem 0;
    font-size: 0.9rem;
    line-height: 1.3;
    flex-grow: 1;
}

.product-title-discounted a {
    color: #2c2c2c;
    text-decoration: none;
    font-weight: 600;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-title-discounted a:hover {
    color: #e74c3c;
}

.product-price-discounted {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.current-price {
    color: #e74c3c;
    font-weight: bold;
    font-size: 1.1rem;
}

.old-price {
    color: #999;
    text-decoration: line-through;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .personalized-products-section {
        margin: 2rem auto;
        padding: 0 15px;
    }
    
    .personalized-container {
        padding: 1.5rem;
    }
    
    .personalized-title {
        font-size: 1.5rem;
    }
    
    .personalized-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .banner-image {
        height: 250px;
    }
    
    .discounted-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .product-image-discounted {
        height: 180px;
    }
    
    .product-info-discounted {
        padding: 0.75rem;
    }
    
    .product-title-discounted {
        font-size: 0.85rem;
    }
    
    .header-container,
    .brand-carousel-section,
    .campaign-products-section,
    .new-products-section,
    .content-section,
    .footer-content,
    .breadcrumb,
    .product-detail-section,
    .related-products-section,
    .category-page-container {
        padding: 0 15px;
    }
}

/* About Us Page Styles */

/* About Hero Section */
.about-hero-section {
    background: #e31e24;
    padding: 80px 0;
    text-align: center;
    color: white;
}

.about-hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 10px;
}

.about-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.about-hero-subtitle {
    font-size: 1.3rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    opacity: 0.9;
}

/* About Content Section */
.about-content-section {
    padding: 80px 0;
    background: #faf8f5;
}

.about-content-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 10px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-text-section {
    padding-right: 40px;
}

.about-section-title {
    font-size: 2.5rem;
    color: #2c2c2c;
    margin-bottom: 2rem;
    font-weight: 600;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

/* About Images Grid */
.about-images-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 200px);
    gap: 20px;
    height: 600px;
}

.about-image-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.about-image-item:hover {
    transform: translateY(-5px);
}

.about-image-item.large {
    grid-column: 1 / 3;
    grid-row: 1 / 2;
}

.about-image-item.wide {
    grid-column: 1 / 3;
    grid-row: 3 / 4;
}

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

.about-image-item:hover .about-img {
    transform: scale(1.05);
}

/* Mission Vision Section */
.mission-vision-section {
    padding: 80px 0;
    background: white;
}

.mission-vision-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 10px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.mission-card, .vision-card {
    text-align: center;
    padding: 50px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.mission-card:hover, .vision-card:hover {
    transform: translateY(-10px);
}

.mission-card {
    background: linear-gradient(135deg, #e74c3c 0%, #e76b3c 100%);
    color: white;
}

.vision-card {
    background: linear-gradient(135deg, #2c2c2c 0%, #555 100%);
    color: white;
}

.mission-icon, .vision-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.mission-title, .vision-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.mission-text, .vision-text {
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.9;
}

/* Values Section */
.values-section {
    padding: 80px 0;
    background: #faf8f5;
}

.values-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 10px;
    text-align: center;
}

.values-title {
    font-size: 2.5rem;
    color: #2c2c2c;
    margin-bottom: 3rem;
    font-weight: 600;
}

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

.value-item {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
}

.value-icon {
    font-size: 2.5rem;
    color: #e74c3c;
    margin-bottom: 1.5rem;
}

.value-name {
    font-size: 1.3rem;
    color: #2c2c2c;
    margin-bottom: 1rem;
    font-weight: 600;
}

.value-description {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

/* Contact Map Section */
.contact-map-section {
    padding: 80px 0;
    background: white;
}

.contact-map-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 10px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-title {
    font-size: 2.5rem;
    color: #2c2c2c;
    margin-bottom: 2rem;
    font-weight: 600;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-item i {
    font-size: 1.5rem;
    color: #e74c3c;
    margin-top: 5px;
    min-width: 20px;
}

.contact-text h4 {
    font-size: 1.2rem;
    color: #2c2c2c;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-text p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.map-container iframe {
    border-radius: 15px;
}

/* Responsive Design for About Page */
@media (max-width: 768px) {
    .about-hero-title {
        font-size: 2.5rem;
    }
    
    .about-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .about-content-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-text-section {
        padding-right: 0;
    }
    
    .about-images-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, 200px);
        height: auto;
    }
    
    .about-image-item.large,
    .about-image-item.wide {
        grid-column: 1;
    }
    
    .mission-vision-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-map-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Brands/References Page Styles */

/* Brands Hero Section */
.brands-hero-section {
    background: #e31e24;
    padding: 80px 0;
    text-align: center;
    color: white;
}

.brands-hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 10px;
}

.brands-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.brands-hero-subtitle {
    font-size: 1.3rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    opacity: 0.9;
}

/* Brands Categories Section */
.brands-categories-section {
    padding: 80px 0;
    background: #faf8f5;
}

.brands-categories-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 10px;
}

.brand-category {
    margin-bottom: 80px;
}

.brand-category:last-child {
    margin-bottom: 0;
}

.category-title {
    font-size: 2.5rem;
    color: #2c2c2c;
    margin-bottom: 3rem;
    font-weight: 600;
    text-align: center;
    position: relative;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(135deg, #e74c3c 0%, #e76b3c 100%);
    border-radius: 2px;
}

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

.brand-item {
    background: white;
    padding: 30px 20px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.brand-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.brand-logo-container {
    width: 200px;
    height: 100px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border-radius: 10px;
    padding: 15px;
    transition: all 0.3s ease;
}

.brand-item:hover .brand-logo-container {
    background: #f0f0f0;
    transform: scale(1.05);
}

.brand-logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.brand-item:hover .brand-logo {
    filter: grayscale(0%);
}

.brand-name {
    font-size: 1.2rem;
    color: #2c2c2c;
    font-weight: 600;
    margin: 0;
}

/* Trust Section */
.trust-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #2c2c2c 0%, #555 100%);
    color: white;
    text-align: center;
}

.trust-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 10px;
}

.trust-title {
    font-size: 2rem;
    margin-bottom: 3rem;
    font-weight: 600;
    line-height: 1.4;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.trust-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Quality Promise Section */
.quality-promise-section {
    padding: 80px 0;
    background: white;
}

.quality-promise-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 10px;
    text-align: center;
}

.quality-promise-title {
    font-size: 2.5rem;
    color: #2c2c2c;
    margin-bottom: 3rem;
    font-weight: 600;
}

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

.quality-feature {
    padding: 40px 30px;
    border-radius: 15px;
    background: #faf8f5;
    transition: transform 0.3s ease;
}

.quality-feature:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3rem;
    color: #e74c3c;
    margin-bottom: 1.5rem;
}

.feature-title {
    font-size: 1.3rem;
    color: #2c2c2c;
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature-description {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

/* Responsive Design for Brands Page */
@media (max-width: 768px) {
    .brands-hero-title {
        font-size: 2.5rem;
    }
    
    .brands-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .category-title {
        font-size: 2rem;
    }
    
    .brands-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .brand-logo-container {
        width: 150px;
        height: 80px;
    }
    
    .trust-title {
        font-size: 1.5rem;
    }
    
    .trust-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .quality-promise-title {
        font-size: 2rem;
    }
    
    .quality-features {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Categories Page Styles */
.categories-hero-section {
    background: #e31e24;
    padding: 80px 0;
    text-align: center;
}

.categories-hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 10px;
}

.categories-hero-title {
    font-size: 3rem;
    color: white;
    margin-bottom: 1rem;
    font-weight: 700;
}

.categories-hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
}

.categories-grid-section {
    padding: 4rem 0;
}

.categories-grid-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 10px;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.category-card {
    position: relative;
    overflow: hidden;
    height: 300px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.category-card:hover {
    transform: scale(1.02);
}

.category-image {
    position: relative;
    width: 100%;
    height: 100%;
}

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

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.category-card:hover .category-overlay {
    background: rgba(0, 0, 0, 0.6);
}

.category-name {
    color: white;
    font-size: 1.8rem;
    font-weight: 600;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
    .categories-hero-title {
        font-size: 2rem;
    }
    
    .categories-hero-subtitle {
        font-size: 1rem;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .category-card {
        height: 250px;
    }
    
    .category-name {
        font-size: 1.5rem;
    }
}

/* Contact Page Styles */

/* Contact Hero Section */
.contact-hero-section {
    background: #e31e24;
    padding: 80px 0;
    text-align: center;
    color: white;
}

.contact-hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 10px;
}

.contact-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.contact-hero-subtitle {
    font-size: 1.3rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    opacity: 0.9;
}

/* Contact Information Section */
.contact-info-section {
    padding: 80px 0;
    background: #faf8f5;
}

.contact-info-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 10px;
}

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

.contact-info-item {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.contact-info-item:hover {
    transform: translateY(-5px);
}

.contact-icon {
    font-size: 2.5rem;
    color: #e74c3c;
    margin-bottom: 1.5rem;
}

.contact-details h3 {
    font-size: 1.3rem;
    color: #2c2c2c;
    margin-bottom: 1rem;
    font-weight: 600;
}

.contact-details p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

/* Contact Form Section */
.contact-form-section {
    padding: 80px 0;
    background: white;
}

.contact-form-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 10px;
}

.contact-form-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.form-section {
    padding-right: 40px;
}

.form-title {
    font-size: 2.5rem;
    color: #2c2c2c;
    margin-bottom: 1rem;
    font-weight: 600;
}

.form-subtitle {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 1rem;
    color: #2c2c2c;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 2px solid #e8e0d5;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #e74c3c;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #e74c3c;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
    gap: 0.75rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.9rem;
    color: #555;
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkbox-label .checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid #e8e0d5;
    border-radius: 3px;
    position: relative;
    flex-shrink: 0;
    margin-top: 2px;
    transition: all 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: #e74c3c;
    border-color: #e74c3c;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: "✓";
    position: absolute;
    top: -1px;
    left: 2px;
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.submit-btn {
    background: #e74c3c;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.submit-btn:hover {
    background: #c0392b;
    transform: translateY(-2px);
}

/* Map Section */
.map-section {
    padding-left: 40px;
}

.map-title {
    font-size: 2rem;
    color: #2c2c2c;
    margin-bottom: 2rem;
    font-weight: 600;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
}

.map-info h3 {
    font-size: 1.3rem;
    color: #2c2c2c;
    margin-bottom: 1rem;
    font-weight: 600;
}

.map-info ul {
    list-style: none;
    padding: 0;
}

.map-info li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
    font-size: 1rem;
    color: #555;
}

.map-info i {
    color: #e74c3c;
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: #faf8f5;
}

.faq-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 10px;
}

.faq-title {
    font-size: 2.5rem;
    color: #2c2c2c;
    margin-bottom: 3rem;
    font-weight: 600;
    text-align: center;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 20px;
}

.faq-item {
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #faf8f5;
}

.faq-question h3 {
    font-size: 1.1rem;
    color: #2c2c2c;
    font-weight: 600;
    margin: 0;
}

.faq-question i {
    color: #e74c3c;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    display: none;
}

.faq-answer p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* Social Media Section */
.social-media-section {
    padding: 80px 0;
    background: white;
}

.social-media-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 10px;
    text-align: center;
}

.social-media-title {
    font-size: 2.5rem;
    color: #2c2c2c;
    margin-bottom: 1rem;
    font-weight: 600;
}

.social-media-subtitle {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.social-media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.social-media-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
    border-radius: 15px;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    font-weight: 600;
}

.social-media-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.social-media-item i {
    font-size: 2rem;
}

.social-media-item.facebook {
    background: linear-gradient(135deg, #1877f2 0%, #0d6efd 100%);
}

.social-media-item.instagram {
    background: linear-gradient(135deg, #e4405f 0%, #c13584 100%);
}

.social-media-item.twitter {
    background: linear-gradient(135deg, #1da1f2 0%, #0d8bd9 100%);
}

.social-media-item.youtube {
    background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
}

.social-media-item.linkedin {
    background: linear-gradient(135deg, #0077b5 0%, #005885 100%);
}

/* Responsive Design for Contact Page */
@media (max-width: 768px) {
    .contact-hero-title {
        font-size: 2.5rem;
    }
    
    .contact-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .contact-form-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .form-section {
        padding-right: 0;
    }
    
    .map-section {
        padding-left: 0;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .social-media-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
}
