:root {
    --primary-color: #212529;
    --secondary-color: #FFD700; /* Ana altın renk */
    --accent-color: #FFF8DC; /* Açık altın */
    --light-color: #f8f9fa;
    --dark-color: #212529;
    --border-radius: 8px;
    --box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark-color);
    background-color: #f9fafb;
    line-height: 1.6;
}

/* Navbar Styles */
.navbar {
    background-color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1030;
}

.navbar-brand {
    font-weight: 700;
    font-size: 28px;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.navbar-brand span {
    background: linear-gradient(45deg, #FFD700, #B8860B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navbar .navbar-nav {
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-item {
    margin: 0 8px;
}

.nav-link {
    color: var(--primary-color);
    font-weight: 600;
    padding: 10px 16px;
    border-radius: 6px;
    transition: var(--transition);
    position: relative;
    font-size: 15px;
}

.nav-link:hover {
    color: var(--secondary-color);
    background-color: rgba(255, 215, 0, 0.05);
}

.nav-link.active {
    color: var(--secondary-color);
    background-color: rgba(255, 215, 0, 0.08);
}

.dropdown-menu {
    border: none;
    box-shadow: var(--box-shadow);
    border-radius: var(--border-radius);
    margin-top: 15px;
    min-width: 220px;
    padding: 15px 0;
    animation: dropdown-animation 0.3s ease;
    z-index: 1050;
}

@keyframes dropdown-animation {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-item {
    padding: 10px 20px;
    font-weight: 500;
    color: var(--primary-color);
    transition: var(--transition);
    position: relative;
}

.dropdown-item:hover {
    background-color: rgba(255, 215, 0, 0.05);
    color: var(--secondary-color);
    padding-left: 25px;
}

.dropdown-item::before {
    content: "";
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, #FFD700, #B8860B);
    transition: var(--transition);
}

.dropdown-item:hover::before {
    width: 8px;
}

.login-btn {
    background-color: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    padding: 8px 20px;
    border-radius: 25px;
    transition: var(--transition);
    font-weight: 600;
    display: flex;
    align-items: center;
}

.login-btn:hover {
    background: linear-gradient(45deg, #FFD700, #B8860B);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.login-btn i {
    margin-right: 8px;
}

/* Search Button and Toggle */
.search-toggle {
    background-color: transparent;
    border: none;
    color: var(--primary-color);
    font-size: 18px;
    padding: 8px;
    margin-right: 10px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.search-toggle:hover {
    background-color: rgba(255, 215, 0, 0.1);
    color: var(--secondary-color);
    transform: translateY(-2px);
}

.search-box {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: white;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: none;
    z-index: 1000;
    animation: fadeDown 0.3s forwards;
}

@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.search-box.active {
    display: block;
}

.search-form {
    display: flex;
    max-width: 600px;
    margin: 0 auto;
}

.search-input {
    flex: 1;
    padding: 12px 20px;
    border: 1px solid #e9ecef;
    border-radius: 30px 0 0 30px;
    font-size: 16px;
    background-color: #f8f9fa;
    transition: var(--transition);
}

.search-input:focus {
    border-color: var(--secondary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

.search-btn {
    background: linear-gradient(45deg, #FFD700, #B8860B);
    color: white;
    border: none;
    padding: 0 25px;
    border-radius: 0 30px 30px 0;
    font-weight: 600;
    transition: var(--transition);
}

.search-btn:hover {
    background: linear-gradient(45deg, #B8860B, #DAA520);
}

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    z-index: 999;
    transition: var(--transition);
}

.whatsapp-btn:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35);
}

.whatsapp-btn::after {
    content: 'Bize Ulaşın';
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #333;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 14px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    white-space: nowrap;
}

.whatsapp-btn:hover::after {
    opacity: 1;
    visibility: visible;
}

/* Login/Register Modal */
.auth-modal .modal-content {
    border-radius: 15px;
    overflow: hidden;
    border: none;
}

.auth-modal .modal-header {
    border: none;
    background-color: transparent;
    padding: 20px 30px 0;
}

.auth-modal .modal-title {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 24px;
}

.auth-modal .btn-close {
    background-color: #f1f1f1;
    border-radius: 50%;
    padding: 8px;
}

.auth-modal .modal-body {
    padding: 20px 30px 30px;
}

.auth-tabs {
    display: flex;
    margin-bottom: 30px;
    border-bottom: 1px solid #e9ecef;
}

.auth-tab {
    flex: 1;
    text-align: center;
    padding: 15px 0;
    font-weight: 600;
    color: #6c757d;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.auth-tab.active {
    color: var(--secondary-color);
}

.auth-tab::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(45deg, #FFD700, #B8860B);
    transition: var(--transition);
}

.auth-tab.active::after {
    width: 100%;
}

.auth-form {
    display: none;
}

.auth-form.active {
    display: block;
    animation: fadeIn 0.5s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    padding: 12px 15px;
    border-radius: var(--border-radius);
    border: 1px solid #e9ecef;
    background-color: #f8f9fa;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

.form-label {
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.form-check-label {
    color: #6c757d;
    font-size: 14px;
}

.forgot-password {
    font-size: 14px;
    color: var(--secondary-color);
    text-decoration: none;
    transition: var(--transition);
}

.forgot-password:hover {
    color: #B8860B;
    text-decoration: underline;
}

.auth-btn {
    background: linear-gradient(45deg, #FFD700, #B8860B);
    color: white;
    border: none;
    padding: 12px;
    border-radius: 25px;
    font-weight: 600;
    transition: var(--transition);
    width: 100%;
    margin-top: 15px;
}

.auth-btn:hover {
    background: linear-gradient(45deg, #B8860B, #DAA520);
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.social-login {
    margin-top: 30px;
    text-align: center;
}

.social-login-title {
    position: relative;
    margin-bottom: 20px;
    font-size: 14px;
    color: #6c757d;
}

.social-login-title::before,
.social-login-title::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40%;
    height: 1px;
    background-color: #e9ecef;
}

.social-login-title::before {
    left: 0;
}

.social-login-title::after {
    right: 0;
}

.social-login-buttons {
    display: flex;
    gap: 15px;
}

.social-login-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    border-radius: 25px;
    color: white;
    font-weight: 500;
    transition: var(--transition);
    border: none;
}

.social-login-btn i {
    margin-right: 8px;
}

.facebook-btn {
    background-color: #3b5998;
}

.google-btn {
    background-color: #dd4b39;
}

.social-login-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Hero Slider */
.carousel-item {
    height: 650px;
    position: relative;
}

.carousel-item img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.carousel-overlay {
    position: absolute;
    background: linear-gradient(to right, rgba(0,0,0,0.7) 30%, rgba(0,0,0,0.2));
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.carousel-caption {
    text-align: left;
    left: 10%;
    right: auto;
    top: 50%;
    transform: translateY(-50%);
    max-width: 550px;
    padding: 0;
}

.carousel-caption h2 {
    font-weight: 700;
    font-size: 48px;
    margin-bottom: 20px;
    animation: fadeInUp 1s both;
}

.carousel-caption p {
    font-size: 18px;
    margin-bottom: 30px;
    animation: fadeInUp 1s 0.3s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slider-btn {
    background: linear-gradient(45deg, #FFD700, #B8860B);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    transition: var(--transition);
    animation: fadeInUp 1s 0.6s both;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
    display: inline-block;
    text-decoration: none;
}

.slider-btn:hover {
    background: linear-gradient(45deg, #B8860B, #DAA520);
    transform: translateY(-3px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.2);
    color: white;
    text-decoration: none;
}

.carousel-indicators {
    margin-bottom: 30px;
}

.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: white;
    opacity: 0.5;
    transition: var(--transition);
    margin: 0 8px;
    border: none;
}

.carousel-indicators .active {
    opacity: 1;
    background: linear-gradient(45deg, #FFD700, #B8860B);
    transform: scale(1.2);
}

/* Section styles */
.section {
    padding: 60px 0;
}

.section-title-container {
    margin-bottom: 25px;
    position: relative;
    text-align: center;
}

.section-title {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    font-size: 32px;
    text-align: center;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 3px;
    background: linear-gradient(45deg, #FFD700, #B8860B);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.section-subtitle {
    color: #666;
    margin-bottom: 40px;
    font-size: 18px;
    line-height: 1.6;
    margin-top: 10px;
    font-weight: 400;
    text-align: center;
}

/* Category Cards */
.category-card {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    position: relative;
    margin-bottom: 30px;
    background-color: white;
    height: 380px;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.category-img {
    height: 280px;
    overflow: hidden;
    position: relative;
}

.category-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.category-card:hover .category-img img {
    transform: scale(1.05);
}

.category-img::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
}

.category-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(45deg, #FFD700, #B8860B);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
    z-index: 2;
}

.category-info {
    padding: 20px;
    text-align: center;
}

.category-title {
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 20px;
    transition: var(--transition);
}

.category-card:hover .category-title {
    color: var(--secondary-color);
}

.category-link {
    color: var(--secondary-color);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: var(--transition);
}

.category-link i {
    margin-left: 5px;
    transition: var(--transition);
}

.category-link:hover {
    color: #B8860B;
    text-decoration: none;
}

.category-link:hover i {
    transform: translateX(5px);
}

/* Product Section */
.product-section {
    padding: 40px 0;
}

.product-section.bg-light {
    background-color: #f8f9fa;
}

.main-products-title {
    font-size: 32px;
    font-weight: 700;
    color: #212529;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.main-products-title:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(45deg, #FFD700, #B8860B);
}

.category-heading {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
    padding-bottom: 10px;
    border-bottom: 2px solid #FFD700;
    display: inline-block;
}

.product-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    height: 440px;
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
    border: none;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
    border-bottom-color: #B8860B;
}

.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: linear-gradient(45deg, #FFD700, #B8860B);
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 12px;
    z-index: 2;
}

.product-img {
    height: 220px;
    overflow: hidden;
    position: relative;
    background-color: #f8f9fa;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-img img {
    transform: scale(1.05);
}

.product-actions {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateX(20px);
    transition: var(--transition);
}

.product-card:hover .product-actions {
    opacity: 1;
    transform: translateX(0);
}

.product-action-btn {
    background-color: white;
    color: #333;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 8px;
}

.product-action-btn:hover {
    background: linear-gradient(45deg, #FFD700, #B8860B);
    color: white;
    transform: translateY(-3px);
}

.product-info {
    padding: 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
}

.product-category {
    font-size: 14px;
    color: #999;
    margin-bottom: 5px;
}

.product-title {
    font-weight: 600;
    font-size: 16px;
    line-height: 1.4;
    margin-bottom: 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    max-height: 2.8em;
    color: #333;
    transition: color 0.3s ease;
}

.product-card:hover .product-title {
    color: var(--secondary-color);
}

.product-price {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    margin-top: auto;
}

.current-price {
    font-weight: 700;
    font-size: 20px;
    background: linear-gradient(45deg, #FFD700, #B8860B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.old-price {
    font-size: 16px;
    color: #999;
    text-decoration: line-through;
    margin-left: 10px;
    font-weight: 400;
}

.product-buttons {
    margin-top: auto;
    display: flex;
    flex-direction: row; /* Butonları yan yana yapmak için */
    gap: 8px;
    position: relative;
    z-index: 2;
}

.btn-outline-view {
    border: 1px solid #ddd;
    background-color: #f8f9fa;
    color: #333;
    padding: 8px 5px;
    border-radius: 4px;
    font-weight: 500;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
    width: 50%; /* Her buton yarım genişlik */
}

.btn-outline-view:hover {
    background-color: #e8e8e8;
    transform: translateY(-2px);
    text-decoration: none;
    color: #333;
}

.btn-outline-view i {
    margin-right: 5px;
}

.product-btn {
    background: linear-gradient(45deg, #FFD700, #B8860B);
    color: white;
    border: none;
    padding: 8px 5px;
    border-radius: 4px;
    font-weight: 500;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
    position: relative;
    text-decoration: none !important;
    width: 50%; /* Her buton yarım genişlik */
}

.product-btn i {
    margin-right: 5px;
}

.product-btn:hover {
    background: linear-gradient(45deg, #B8860B, #DAA520);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    color: white;
    text-decoration: none !important;
}

/* Slick Slider for Products */
.product-slider {
    margin: 0;
    padding: 0 20px;
}

.product-slider .slick-dots {
    bottom: -30px;
}

.product-slider .slick-dots li button:before {
    font-size: 12px;
    color: var(--secondary-color);
    opacity: 0.3;
}

.product-slider .slick-dots li.slick-active button:before {
    opacity: 1;
    color: var(--secondary-color);
}

.product-slider .slick-prev,
.product-slider .slick-next {
    width: 40px;
    height: 40px;
    background-color: white;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.product-slider .slick-prev:before,
.product-slider .slick-next:before {
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--secondary-color);
    font-size: 18px;
    opacity: 1;
}

.product-slider .slick-prev:before {
    content: '\f104';
}

.product-slider .slick-next:before {
    content: '\f105';
}

.product-slider .slick-prev {
    left: -20px;
}

.product-slider .slick-next {
    right: -20px;
}

.product-slider .slick-prev:hover,
.product-slider .slick-next:hover {
    background: linear-gradient(45deg, #FFD700, #B8860B);
    transform: scale(1.1);
}

.product-slider .slick-prev:hover:before,
.product-slider .slick-next:hover:before {
    color: white;
}

.product-slider .slick-list {
    margin: 0 -15px;
}

.product-slider .slick-slide {
    padding: 0 5px;
}

.product-slider .slick-track {
    display: flex !important;
    margin-left: 0;
    margin-right: 0;
}

.product-slider .slick-slide > div {
    height: 100%;
}

.section-divider {
    height: 2px;
    background-color: #e9ecef;
    width: 80%;
    max-width: 800px;
    margin: 20px auto;
    position: relative;
}

.section-divider::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 4px;
    background: linear-gradient(45deg, #FFD700, #B8860B);
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.view-all-btn {
    margin-top: 20px;
    background-color: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.view-all-btn i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.view-all-btn:hover {
    background: linear-gradient(45deg, #FFD700, #B8860B);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
    text-decoration: none;
}

.view-all-btn:hover i {
    transform: translateX(5px);
}

/* Why Choose Us Section Styles - Başlık stilini diğerleri gibi yap */
.why-choose-us-section {
    background-color: #f8f9fa;
    padding: 70px 0;
    margin-top: 50px;
}

.why-choose-us-section .section-title {
    font-size: 32px;
    font-weight: 700;
    color: #212529;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.why-choose-us-section .section-title:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(45deg, #FFD700, #B8860B);
}

.feature-card {
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFD700;
    font-size: 30px;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: linear-gradient(45deg, #FFD700, #B8860B);
    color: white;
    transform: rotateY(360deg);
}

.feature-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.feature-text {
    color: #666;
    font-size: 15px;
    line-height: 1.7;
}

/* About Section */
.about-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.about-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #f5f5f5;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
    z-index: -1;
}

.about-content h2 {
    margin-bottom: 25px;
}

.about-content p {
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
    font-size: 16px;
}

.about-img {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    position: relative;
}

.about-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right bottom, rgba(255, 215, 0, 0.2), transparent);
}

.about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-btn {
    background: linear-gradient(45deg, #FFD700, #B8860B);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    margin-top: 15px;
    text-decoration: none;
}

.about-btn i {
    margin-left: 8px;
    transition: var(--transition);
}

.about-btn:hover {
    background: linear-gradient(45deg, #B8860B, #DAA520);
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
    color: white;
}

.about-btn:hover i {
    transform: translateX(5px);
}

/* Features Section */
.features-section {
    background-color: #f9fafb;
    padding: 80px 0;
}

.feature-card {
    text-align: center;
    padding: 40px 30px;
    transition: var(--transition);
    border-radius: var(--border-radius);
    background-color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 215, 0, 0.1);
    color: var(--secondary-color);
    border-radius: 50%;
    font-size: 32px;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background: linear-gradient(45deg, #FFD700, #B8860B);
    color: white;
    transform: rotateY(360deg);
}

.feature-title {
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.feature-text {
    color: #6c757d;
    line-height: 1.7;
    font-size: 15px;
}

/* Testimonials */
.testimonial-section {
    padding: 80px 0;
    background-color: #fff;
    position: relative;
}

.testimonial-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 30px;
    margin: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.testimonial-card::before {
    content: '\f10d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 30px;
    color: rgba(255, 215, 0, 0.1);
}

.testimonial-text {
    font-style: italic;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
    padding-top: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
    border: 3px solid rgba(255, 215, 0, 0.1);
}

.testimonial-author-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-author-info h5 {
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 18px;
}

.testimonial-author-info p {
    color: #6c757d;
    font-size: 14px;
}

/* Footer */
.footer {
    background-color: #212529;
    color: white;
    padding-top: 80px;
    position: relative;
}

.footer-logo {
    font-weight: 700;
    font-size: 30px;
    margin-bottom: 20px;
    display: inline-block;
    color: white;
    text-decoration: none;
}

.footer-logo:hover {
    color: white;
    text-decoration: none;
}

.footer-logo span {
    background: linear-gradient(45deg, #FFD700, #B8860B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
    line-height: 1.8;
}

.footer-title {
    font-weight: 600;
    margin-bottom: 25px;
    font-size: 20px;
    position: relative;
    padding-bottom: 15px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(45deg, #FFD700, #B8860B);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
}

.footer-links a i {
    margin-right: 10px;
    color: var(--secondary-color);
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition);
    text-decoration: none;
}

.social-icon:hover {
    background: linear-gradient(45deg, #FFD700, #B8860B);
    transform: translateY(-5px);
    color: white;
}

.newsletter-form {
    margin-top: 20px;
}

.newsletter-input {
    background-color: rgba(255, 255, 255, 0.05);
    border: none;
    padding: 12px 15px;
    color: white;
    border-radius: var(--border-radius);
    margin-bottom: 15px;
    width: 100%;
}

.newsletter-input:focus {
    outline: none;
    background-color: rgba(255, 255, 255, 0.1);
}

.newsletter-btn {
    background: linear-gradient(45deg, #FFD700, #B8860B);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    transition: var(--transition);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-btn i {
    margin-left: 8px;
}

.newsletter-btn:hover {
    background: linear-gradient(45deg, #B8860B, #DAA520);
    transform: translateY(-3px);
}

.copyright {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    margin-top: 60px;
    text-align: center;
}

.copyright p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
}

.copyright a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: var(--transition);
}

.copyright a:hover {
    color: white;
    text-decoration: underline;
}

.developer {
    display: block;
    margin-top: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

/* Alerts */
.alert {
    border-radius: 10px;
    padding: 15px 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.alert-success {
    background-color: #d4edda;
    border-color: #c3e6cb;
    color: #155724;
}

.alert-danger {
    background-color: #f8d7da;
    border-color: #f5c6cb;
    color: #721c24;
}

/* Kategori Banner */
.category-banner {
    background-color: #f8f9fa;
    padding: 40px 0;
    margin-bottom: 40px;
}

.category-banner h1 {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.category-banner p {
    color: #666;
    font-size: 16px;
    margin-bottom: 0;
}

.breadcrumb {
    margin-bottom: 0;
    background: transparent;
}

.breadcrumb-item a {
    color: #666;
    text-decoration: none;
}

.breadcrumb-item.active {
    color: #FFD700;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: #666;
}

/* View All Container */
.view-all-container {
    text-align: center;
    margin-top: 30px;
}

/* Slider Navigation Butonları */
.custom-slider-prev,
.custom-slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: white;
    color: #FFD700;
    border: none;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    cursor: pointer;
    transition: all 0.3s ease;
}

.custom-slider-prev {
    left: -50px;
}

.custom-slider-next {
    right: -50px;
}

.custom-slider-prev:hover,
.custom-slider-next:hover {
    background: linear-gradient(45deg, #FFD700, #B8860B);
    color: white;
}

/* Responsive Styles */
@media (max-width: 1199px) {
    .product-slider .slick-prev {
        left: -15px;
    }
    .product-slider .slick-next {
        right: -15px;
    }
    .custom-slider-prev {
        left: -15px;
    }
    .custom-slider-next {
        right: -15px;
    }
}

@media (max-width: 991px) {
    .navbar .navbar-nav {
        margin: 15px 0;
        align-items: flex-start;
    }
    .carousel-item {
        height: 500px;
    }
    .carousel-caption {
        max-width: 450px;
    }
    .carousel-caption h2 {
        font-size: 36px;
    }
    .about-img {
        margin-top: 40px;
    }
    .about-section {
        padding: 70px 0;
    }
    .product-slider .slick-prev,
    .product-slider .slick-next {
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 767px) {
    .navbar-brand {
        font-size: 24px;
    }
    .login-btn, .search-toggle {
        margin-top: 15px;
        width: 100%;
        justify-content: center;
    }
    .carousel-item {
        height: 400px;
    }
    .carousel-caption {
        text-align: center;
        left: 10%;
        right: 10%;
        max-width: 100%;
    }
    .carousel-caption h2 {
        font-size: 32px;
    }
    .section {
        padding: 60px 0;
    }
    .product-slider .slick-prev,
    .product-slider .slick-next {
        display: none !important;
    }
    .about-section {
        padding: 60px 0;
    }
    .about-btn {
        width: 100%;
        justify-content: center;
    }
    .feature-card {
        margin-bottom: 30px;
    }
    
    /* Mobilde butonları dikey yap */
    .product-buttons {
        flex-direction: column;
    }
    
    .btn-outline-view,
    .product-btn {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .carousel-item {
        height: 350px;
    }
    .carousel-caption h2 {
        font-size: 28px;
    }
    .carousel-caption p {
        font-size: 16px;
    }
    .slider-btn {
        padding: 10px 20px;
    }
    .section-title {
        font-size: 24px;
    }
    .section-subtitle {
        font-size: 16px;
    }
    .category-card {
        height: 340px;
    }
    .category-img {
        height: 240px;
    }
    .product-card {
        background-color: white;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
        transition: all 0.3s ease;
        position: relative;
        height: 440px;
        display: flex;
        flex-direction: column;
        margin-bottom: 10px;
        border: none;
    }
    .product-img {
        height: 200px;
    }
    .product-badge {
        font-size: 10px;
        padding: 4px 10px;
    }
    .product-title {
        font-size: 16px;
    }
    .current-price {
        font-size: 20px;
    }
    .old-price {
        font-size: 14px;
    }
    .product-btn {
        padding: 8px 15px;
        font-size: 14px;
    }
    .view-all-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    .about-content h2 {
        font-size: 24px;
    }
    .about-content p {
        font-size: 14px;
    }
    .footer-logo {
        font-size: 26px;
    }
    .footer-title {
        font-size: 18px;
    }
    .custom-slider-prev,
    .custom-slider-next {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
}

/* Altın buton sınıfları */
.btn-primary, .product-btn, .auth-btn, .slider-btn, .about-btn, .newsletter-btn {
    background: linear-gradient(45deg, #FFD700, #B8860B) !important;
    color: white !important;
}

/* Altın buton hover efekti */
.btn-primary:hover, .product-btn:hover, .auth-btn:hover, .slider-btn:hover, .about-btn:hover, .newsletter-btn:hover {
    background: linear-gradient(45deg, #B8860B, #DAA520) !important;
    color: white !important;
}