:root {
    --primary-color: #e8507e;
    --secondary-color: #f39c12;
    --dark-color: #2c3e50;
    --light-color: #ecf0f1;
    --success-color: #27ae60;
    --danger-color: #e74c3c;
    --warning-color: #f39c12;
    --info-color: #3498db;
}

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

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f9fa;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
    font-family: 'Playfair Display', serif;
    color: var(--dark-color);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }

p {
    color: #666;
    margin-bottom: 15px;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    font-weight: 600;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: #d63a6f;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(232, 80, 126, 0.3);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: white;
}

.btn-secondary:hover {
    background-color: #e08e0a;
}

.btn-success {
    background-color: var(--success-color);
    color: white;
}

.btn-danger {
    background-color: var(--danger-color);
    color: white;
}

.btn-small {
    padding: 8px 15px;
    font-size: 0.9rem;
}

.btn-admin {
    background-color: var(--primary-color);
    color: white;
    padding: 8px 15px;
    border-radius: 5px;
}

.navbar {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.categories-section {
    background: white;
    padding: 20px 0;
    border-bottom: 1px solid #f0f0f0;
}

.categories-section .container {
    padding: 0;
}

.categories-slider {
    display: grid;
    grid-template-columns: repeat(15, 1fr);
    gap: 12px;
    align-items: center;
    justify-items: center;
}

.category-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    text-decoration: none;
    color: var(--dark-color);
    transition: all 0.3s ease;
    width: 100%;
    justify-content: center;
}

.category-item:hover {
    transform: scale(1.1);
}

.category-badge {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f0f0f0, #fafafa);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.category-item:hover .category-badge {
    box-shadow: 0 8px 25px rgba(232, 80, 126, 0.15);
}

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

.category-item span {
    font-size: 0.75rem;
    font-weight: 500;
    text-align: center;
    max-width: 80px;
    line-height: 1.2;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    gap: 30px;
}

.navbar-info {
    display: flex;
    gap: 30px;
    align-items: center;
    flex-shrink: 0;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--dark-color);
    transition: all 0.3s ease;
}

.info-item:hover {
    color: var(--primary-color);
}

.info-item i {
    font-size: 1.3rem;
    color: var(--primary-color);
}

.flower-icon {
    width: 1.3rem;
    height: 1.3rem;
    color: var(--primary-color);
    stroke: currentColor;
    stroke-width: 1.5;
    stroke-linecap: round;
}

.info-text {
    display: flex;
    flex-direction: column;
}

.info-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark-color);
}

.navbar-brand {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    flex-shrink: 0;
}

.navbar-search {
    flex: 1;
    max-width: 400px;
}

.navbar-search form {
    display: flex;
    gap: 0;
    border: 1px solid #e0e0e0;
    border-radius: 25px;
    overflow: hidden;
    background: white;
}

.navbar-search input {
    flex: 1;
    border: none;
    padding: 10px 20px;
    font-size: 0.95rem;
    font-family: 'Poppins', sans-serif;
}

.navbar-search input:focus {
    outline: none;
}

.navbar-search button {
    border: none;
    background: none;
    padding: 10px 20px;
    cursor: pointer;
    color: var(--primary-color);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.navbar-search button:hover {
    color: var(--secondary-color);
}

.navbar-right {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
    margin-left: auto;
}

.cart-icon {
    position: relative;
    display: inline-block;
    color: var(--dark-color);
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.cart-icon:hover {
    color: var(--primary-color);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: var(--primary-color);
    color: white;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
}

.navbar-brand i {
    margin-right: 10px;
    font-size: 2rem;
}

.logo-img {
    height: 70px;
    width: auto;
    object-fit: contain;
}

.brand-text {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navbar-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.navbar-menu a {
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.navbar-menu a:hover {
    color: var(--primary-color);
}

.navbar-toggle {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
}

.hero {
    background: linear-gradient(135deg, rgba(232, 80, 126, 0.7), rgba(243, 156, 18, 0.7)), url('../images/flowers.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 150px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero h1 {
    color: white;
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.hero p {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    .hero {
        padding: 80px 20px;
    }

    .hero h1 {
        font-size: 2.2rem;
        margin-bottom: 15px;
    }

    .hero p {
        font-size: 1rem;
        margin-bottom: 25px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 60px 15px;
    }

    .hero h1 {
        font-size: 1.8rem;
        margin-bottom: 12px;
    }

    .hero p {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
}

.page-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    color: white;
    margin-bottom: 10px;
}

.page-header p {
    color: white;
    font-size: 1.1rem;
}



.services-section {
    background-color: #f8f9fa;
    padding: 60px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 2rem;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.service-card {
    background: white;
    padding: 25px 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(232, 80, 126, 0.15);
}

.service-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: white;
    font-size: 1.5rem;
}

.service-card h3 {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.service-card p {
    color: #999;
    font-size: 0.9rem;
    margin: 0;
}

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

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

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .service-card {
        padding: 20px 15px;
    }
}

@media (max-width: 480px) {
    .services-section {
        display: none;
    }

    .service-card {
        padding: 15px 12px;
    }

    .service-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        margin: 0 auto 10px;
    }

    .service-card h3 {
        font-size: 0.9rem;
        margin-bottom: 8px;
    }

    .service-card p {
        font-size: 0.75rem;
    }

    .section-header h2 {
        font-size: 1.2rem;
    }
}

.category-slider-section {
    padding: 60px 0;
    background-color: #fff;
    border-bottom: 1px solid #f0f0f0;
}

.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    color: white;
    margin-bottom: 20px;
    font-size: 2.5rem;
}

.cta-section p {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 30px;
}

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

    .cta-section {
        padding: 50px 0;
    }

    .cta-section h2 {
        font-size: 1.8rem;
    }

    .cta-section p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .category-slider-section {
        padding: 30px 0;
    }

    .cta-section {
        padding: 40px 0;
    }

    .cta-section h2 {
        font-size: 1.4rem;
    }

    .cta-section p {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }
}

.contact-section {
    padding: 80px 0;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.contact-form h3 {
    margin-bottom: 30px;
    color: var(--primary-color);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(232, 80, 126, 0.1);
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.info-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    border-left: 5px solid var(--primary-color);
}

.info-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.info-card h3 {
    margin-bottom: 10px;
}

.info-card p {
    color: #999;
}

.info-card a {
    color: var(--primary-color);
    font-weight: 600;
}

.alert {
    padding: 15px 20px;
    border-radius: 5px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.alert i {
    font-size: 1.2rem;
}

.about-section {
    padding: 80px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h2 {
    margin-bottom: 20px;
}

.about-text h3 {
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.about-text p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.value-item {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
}

.value-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.value-item h4 {
    margin-bottom: 10px;
}

.about-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-placeholder {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.services-highlight {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.services-highlight h2 {
    text-align: center;
    margin-bottom: 60px;
}

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

.service-item {
    background: white;
    padding: 40px 30px;
    border-radius: 10px;
    border-left: 5px solid var(--primary-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.service-item:hover {
    transform: translateX(5px);
}

.service-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.service-item h3 {
    margin-bottom: 10px;
}

.service-item p {
    color: #999;
}

.team-section {
    padding: 80px 0;
}

.team-section h2 {
    text-align: center;
    margin-bottom: 20px;
}

.team-section > p {
    text-align: center;
    margin-bottom: 60px;
    color: #999;
}

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

.team-member {
    background: white;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
}

.member-image {
    font-size: 5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.team-member h3 {
    margin-bottom: 5px;
}

.team-member p {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.member-bio {
    color: #999;
    font-size: 0.95rem;
}

.footer {
    background-color: var(--dark-color);
    color: white;
    padding: 50px 0 20px;
    margin-top: 100px;
}

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

.footer-content {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 40px !important;
    margin-bottom: 30px !important;
}

.footer-section {
    display: block;
}

.footer-section h3,
.footer-section h4 {
    color: white;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.footer-section p {
    color: #bbb;
    margin-bottom: 10px;
    font-size: 0.95rem;
    line-height: 1.6;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

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

.footer-section a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    color: #999;
}

@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 30px !important;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr !important;
        gap: 25px !important;
    }
}

.products-container {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 40px;
}

.sidebar {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    height: fit-content;
}

.filter-group {
    margin-bottom: 30px;
}

.filter-group h3 {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.category-list {
    list-style: none;
}

.category-list li {
    margin-bottom: 10px;
}

.category-list a {
    color: #666;
    font-size: 0.95rem;
    padding: 8px 12px;
    display: block;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.category-list a:hover,
.category-list a.active {
    background-color: #f0f0f0;
    color: var(--primary-color);
    font-weight: 600;
}

.search-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.search-form input {
    padding: 10px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    font-size: 0.95rem;
}

.products-main {
    display: grid;
    grid-template-columns: 1fr;
}

@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }

    .products-container {
        grid-template-columns: 1fr;
    }

    .sidebar {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 768px) {
    .navbar-menu {
        display: none;
    }

    .navbar-toggle {
        display: block;
    }

    .navbar-container {
        gap: 15px;
    }

    .navbar-search {
        max-width: 200px;
    }

    .navbar-search input {
        padding: 8px 12px;
        font-size: 0.85rem;
    }

    .navbar-search button {
        padding: 8px 12px;
    }

    .categories-section {
        display: none;
    }

    .categories-slider {
        grid-template-columns: repeat(15, 1fr);
        gap: 10px;
    }

    .category-badge {
        width: 55px;
        height: 55px;
    }

    .category-item span {
        font-size: 0.7rem;
        max-width: 70px;
    }
}

@media (max-width: 480px) {
    .categories-slider {
        grid-template-columns: repeat(15, 1fr);
        gap: 8px;
    }

    .category-badge {
        width: 50px;
        height: 50px;
    }

    .category-item span {
        font-size: 0.65rem;
        max-width: 60px;
    }
}
}

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero {
        padding: 100px 0;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }

    .about-content {
        grid-template-columns: 1fr;
    }

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

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

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

    .hero h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 0.9rem;
    }

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

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

    .page-header h1 {
        font-size: 1.8rem;
    }

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

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

    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.3rem;
    }

    .btn {
        padding: 8px 15px;
        font-size: 0.85rem;
    }

    /* Slider optimizasyonları */
    .featured-header h2 {
        font-size: 1.3rem;
    }

    .products-slider {
        gap: 10px;
    }
    
    .slider-card {
        flex: 0 0 calc(50% - 5px);
        min-width: 150px;
    }

    .slider-image {
        height: 180px;
    }

    .slider-info {
        padding: 8px;
    }

    .slider-category {
        font-size: 0.6rem;
        margin: 0 0 4px 0;
    }

    .slider-info h4 {
        font-size: 0.8rem;
        margin: 0 0 4px 0;
        line-height: 1.2;
    }

    .slider-footer {
        gap: 4px;
        margin-bottom: 8px;
        padding-top: 6px;
    }

    .slider-price {
        font-size: 0.85rem;
    }

    .slider-actions {
        gap: 4px;
    }

    .btn-cart {
        padding: 6px 8px;
        font-size: 0.75rem;
    }

    .btn-whatsapp {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }

    .slider-controls {
        flex-direction: column;
        gap: 8px;
        width: 100%;
    }

    .slider-btn {
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
    }

    .view-all {
        font-size: 0.85rem;
    }

    .featured-products-section {
        padding: 40px 0;
    }

    .category-slider-section {
        padding: 30px 0;
    }

    .cta-section {
        padding: 40px 0;
    }

    .cta-section h2 {
        font-size: 1.3rem;
    }

    .cta-section p {
        font-size: 1rem;
    }
}


.product-detail {
    padding: 80px 0;
}

.detail-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.product-image-large {
    width: 100%;
}

.product-image-large img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.product-details h1 {
    margin-bottom: 20px;
    font-size: 2.5rem;
}

.price-section {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.price-section .price {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stock {
    padding: 8px 15px;
    border-radius: 5px;
    font-weight: 600;
}

.stock.in-stock {
    background-color: #d4edda;
    color: #155724;
}

.stock.out-of-stock {
    background-color: #f8d7da;
    color: #721c24;
}

.description-section {
    margin-bottom: 30px;
}

.description-section h3 {
    margin-bottom: 15px;
}

.description-section p {
    line-height: 1.8;
    color: #666;
}

.order-section {
    margin-bottom: 30px;
}

.order-section form {
    display: flex;
    gap: 15px;
}

.order-section .btn {
    flex: 1;
    padding: 15px 30px;
    font-size: 1.1rem;
}

.order-section .btn:disabled {
    background-color: #ccc;
    cursor: not-allowed;
    opacity: 0.6;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid #f0f0f0;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #666;
}

.info-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.related-products {
    margin-top: 80px;
    padding-top: 80px;
    border-top: 2px solid #f0f0f0;
}

.related-products h2 {
    text-align: center;
    margin-bottom: 50px;
}

@media (max-width: 768px) {
    .detail-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .product-details h1 {
        font-size: 1.8rem;
    }

    .price-section .price {
        font-size: 1.8rem;
    }

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

    .order-section form {
        flex-direction: column;
    }
}


@media (max-width: 1024px) {
    .navbar-info {
        display: none;
    }
}



/* Featured Products Slider */
.featured-products-section {
    padding: 80px 0;
    background: white;
}

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

.featured-header h2 {
    margin: 0;
    font-size: 2rem;
    color: var(--dark-color);
}

.slider-controls {
    display: flex;
    align-items: center;
    gap: 15px;
}

.slider-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    background-color: white;
    color: var(--primary-color);
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background-color: var(--primary-color);
    color: white;
}

.slider-container {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
}

.slider-wrapper {
    overflow: hidden;
    border-radius: 12px;
    flex: 1;
}

.view-all {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}

.view-all:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}

.products-slider {
    display: flex;
    gap: 20px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
}

.slider-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    border: 1px solid #e8e8e8;
    flex: 0 0 calc(20% - 16px);
    min-width: 220px;
}

.slider-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(232, 80, 126, 0.15);
}

.slider-image {
    position: relative;
    height: 280px;
    overflow: hidden;
    background-color: #f0f0f0;
}

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

.slider-card:hover .slider-image img {
    transform: scale(1.08);
}

.slider-image .badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: var(--primary-color);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.discount-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: var(--danger-color);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.slider-info {
    padding: 12px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-top: 1px solid #e8e8e8;
}

.slider-category {
    color: var(--primary-color);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin: 0 0 6px 0;
}

.slider-info h4 {
    margin: 0 0 8px 0;
    font-size: 0.9rem;
    color: var(--dark-color);
    line-height: 1.3;
    font-weight: 600;
}

.slider-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 10px;
    border-top: 1px solid #f0f0f0;
    gap: 10px;
    margin-bottom: 12px;
}

.slider-price {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary-color);
}

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

.discount-price {
    color: var(--danger-color);
}

.slider-actions {
    display: flex;
    gap: 8px;
    width: 100%;
}

.btn-cart {
    flex: 1;
    padding: 10px 12px;
    font-size: 0.85rem;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-cart:hover {
    background-color: #d63a6f;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(232, 80, 126, 0.3);
}

.btn-whatsapp {
    width: 40px;
    height: 40px;
    padding: 0;
    background-color: #25d366;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-whatsapp:hover {
    background-color: #20ba5a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

@media (max-width: 1024px) {
    .products-slider {
        gap: 15px;
    }
    
    .slider-card {
        flex: 0 0 calc(25% - 12px);
        min-width: 200px;
    }

    .slider-controls {
        gap: 10px;
    }
}

@media (max-width: 768px) {
    .featured-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        margin-bottom: 30px;
    }

    .featured-header h2 {
        font-size: 1.5rem;
    }

    .products-slider {
        gap: 12px;
    }
    
    .slider-card {
        flex: 0 0 calc(50% - 6px);
        min-width: 160px;
    }

    .slider-image {
        height: 200px;
    }

    .slider-info {
        padding: 10px;
    }

    .slider-category {
        font-size: 0.65rem;
    }

    .slider-info h4 {
        font-size: 0.85rem;
        margin: 0 0 6px 0;
    }

    .slider-footer {
        gap: 6px;
        margin-bottom: 10px;
        padding-top: 8px;
    }

    .slider-price {
        font-size: 0.9rem;
    }

    .slider-actions {
        gap: 6px;
    }

    .btn-cart {
        padding: 8px 10px;
        font-size: 0.8rem;
    }

    .btn-whatsapp {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }

    .slider-controls {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }

    .slider-btn {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }

    .view-all {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .products-slider {
        gap: 10px;
    }
    
    .slider-card {
        flex: 0 0 calc(50% - 5px);
        min-width: 150px;
    }

    .slider-image {
        height: 200px;
    }

    .featured-header h2 {
        font-size: 1.3rem;
    }

    .view-all {
        font-size: 0.9rem;
    }
}


.products-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, #c73a6b 100%);
    color: white;
    padding: 40px 0;
    text-align: center;
    margin-bottom: 0;
}

.page-header h1 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.page-header p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
}

.products-container {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 40px;
    align-items: start;
}

.sidebar {
    position: sticky;
    top: 100px;
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.filter-group {
    margin-bottom: 30px;
}

.filter-group:last-child {
    margin-bottom: 0;
}

.filter-group h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--dark-color);
    font-weight: 600;
}

.category-list {
    list-style: none;
}

.category-list li {
    margin-bottom: 10px;
}

.category-list a {
    display: block;
    padding: 10px 12px;
    border-radius: 8px;
    color: #666;
    transition: all 0.3s ease;
    font-weight: 500;
    border-left: 3px solid transparent;
}

.category-list a:hover,
.category-list a.active {
    background-color: #fff5f7;
    color: var(--primary-color);
    border-left-color: var(--primary-color);
}

.search-form {
    display: flex;
    gap: 10px;
}

.search-form input {
    flex: 1;
    padding: 10px 12px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.search-form input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(232, 80, 126, 0.1);
}

.search-form .btn {
    padding: 10px 18px;
    font-size: 0.95rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

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

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(232, 80, 126, 0.15);
}

.product-image {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
    background-color: #f0f0f0;
}

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

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



.product-info {
    padding: 12px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-top: 1px solid #e8e8e8;
}

.product-info h3 {
    font-size: 0.95rem;
    margin-bottom: 6px;
    color: var(--dark-color);
    font-weight: 600;
    line-height: 1.3;
}

.category-tag {
    font-size: 0.7rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-desc {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 10px;
    line-height: 1.3;
    display: none;
}
}

.product-footer {
    display: flex;
    align-items: center;
    padding-top: 10px;
    border-top: 1px solid #f0f0f0;
    margin-bottom: 12px;
}

.product-footer .price {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary-color);
}

.product-actions {
    display: flex;
    gap: 8px;
    width: 100%;
    margin-top: 12px;
}

.btn-cart-small {
    flex: 1;
    padding: 10px 12px;
    font-size: 0.85rem;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

.btn-cart-small:hover {
    background-color: #d63a6f;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(232, 80, 126, 0.3);
}

.btn-whatsapp-small {
    width: 40px;
    height: 40px;
    min-width: 40px;
    padding: 0;
    background-color: #25d366;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
    flex-shrink: 0;
}

.btn-whatsapp-small:hover {
    background-color: #20ba5a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

@media (max-width: 1024px) {
    .products-container {
        grid-template-columns: 200px 1fr;
        gap: 30px;
    }
    
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2rem;
    }
    
    .products-container {
        grid-template-columns: 1fr;
    }
    
    .sidebar {
        position: static;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        margin-bottom: 30px;
    }
    
    .filter-group {
        margin-bottom: 0;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 50px 0;
    }
    
    .page-header h1 {
        font-size: 1.5rem;
    }
    
    .sidebar {
        grid-template-columns: 1fr;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .product-image {
        height: 200px;
    }
}


.price-filter-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.filter-inputs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.filter-input-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.filter-input-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dark-color);
}

.filter-input-group input {
    padding: 8px 10px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    width: 100%;
}

.filter-input-group input::-webkit-outer-spin-button,
.filter-input-group input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.filter-input-group input[type=number] {
    -moz-appearance: textfield;
}

.filter-input-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(232, 80, 126, 0.1);
}

.btn-filter {
    width: 100%;
    padding: 10px;
    font-size: 0.95rem;
    margin-top: 5px;
}


.category-slider-section {
    padding: 50px 0;
    background-color: #f8f9fa;
    border-top: 1px solid #e0e0e0;
}

.category-slider-section:nth-child(odd) {
    background-color: white;
}


.whatsapp-link {
    color: #25d366;
    font-weight: 600;
    transition: all 0.3s ease;
}

.whatsapp-link:hover {
    color: #1fa952;
    text-decoration: underline;
}


.info-item.whatsapp-link {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.info-item.whatsapp-link:hover {
    color: #25d366;
    transform: translateY(-3px);
}

.info-item.whatsapp-link i {
    color: #25d366;
}


.product-detail-section {
    padding: 40px 0;
    background-color: #f8f9fa;
}

.product-detail-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
    margin-bottom: 40px;
}

.product-detail-image {
    position: sticky;
    top: 100px;
}

.product-detail-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.product-detail-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.product-header h1 {
    font-size: 1.6rem;
    margin-bottom: 0;
    color: var(--dark-color);
}

.product-category {
    display: none;
}



.product-price-box {
    display: flex;
    align-items: baseline;
    gap: 12px;
    padding: 15px;
    background: white;
    border-radius: 8px;
    border-left: 3px solid var(--primary-color);
}

.price-label {
    font-size: 0.8rem;
    color: #888;
    font-weight: 500;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}


.btn-cart-large,
.btn-whatsapp-large {
    padding: 12px 20px;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-cart-large {
    background-color: var(--primary-color);
    color: white;
}

.btn-cart-large:hover {
    background-color: #d63a6f;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(232, 80, 126, 0.2);
}

.btn-whatsapp-large {
    background-color: #25d366;
    color: white;
    text-decoration: none;
}

.btn-whatsapp-large:hover {
    background-color: #1fa952;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2);
}

.product-meta {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.meta-item {
    display: flex;
    gap: 10px;
    padding: 12px;
    background: white;
    border-radius: 6px;
    align-items: flex-start;
}

.meta-item i {
    font-size: 1rem;
    color: var(--primary-color);
    margin-top: 2px;
    flex-shrink: 0;
}

.meta-item div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.meta-title {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--dark-color);
}

.meta-text {
    font-size: 0.75rem;
    color: #888;
}

.product-description-section {
    background: white;
    padding: 20px;
    border-radius: 8px;
}

.product-description-section h2 {
    font-size: 1rem;
    margin-bottom: 10px;
    color: var(--dark-color);
    font-weight: 600;
}

.product-description-section p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #666;
    white-space: pre-wrap;
    margin: 0;
}

.similar-products-section {
    padding: 60px 0;
    background-color: white;
}

@media (max-width: 768px) {
    .product-detail-section {
        padding: 30px 0;
    }

    .product-detail-wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .product-detail-image {
        position: static;
    }

    .product-detail-image img {
        width: 100%;
    }

    .product-header h1 {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }

    .product-price-box {
        margin-bottom: 20px;
    }

    .price-label {
        font-size: 0.9rem;
    }

    .price {
        font-size: 1.2rem !important;
    }

    .product-actions {
        flex-direction: column;
        gap: 12px;
    }

    .btn-cart-large,
    .btn-whatsapp-large {
        width: 100%;
        padding: 12px 20px;
        font-size: 0.95rem;
    }

    .product-meta {
        flex-direction: column;
        gap: 15px;
    }

    .meta-item {
        flex-direction: row;
        gap: 12px;
    }

    .product-description-section {
        margin-top: 30px;
    }

    .product-description-section h2 {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }

    .product-description-section p {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .similar-products-section {
        padding: 30px 0;
    }
}

@media (max-width: 480px) {
    .product-detail-section {
        padding: 20px 0;
    }

    .product-detail-wrapper {
        gap: 15px;
    }

    .product-header h1 {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }

    .page-header h1 {
        font-size: 1.5rem;
    }

    .page-header p {
        font-size: 0.9rem;
    }

    .product-price-box {
        margin-bottom: 15px;
    }

    .price-label {
        font-size: 0.8rem;
    }

    .price {
        font-size: 1rem !important;
    }

    .product-actions {
        gap: 10px;
    }

    .btn-cart-large,
    .btn-whatsapp-large {
        padding: 10px 15px;
        font-size: 0.85rem;
    }

    .btn-cart-large i,
    .btn-whatsapp-large i {
        font-size: 0.85rem;
    }

    .product-meta {
        gap: 12px;
    }

    .meta-item i {
        font-size: 1rem;
    }

    .meta-title {
        font-size: 0.75rem;
    }

    .meta-text {
        font-size: 0.7rem;
    }

    .product-description-section {
        margin-top: 20px;
    }

    .product-description-section h2 {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }

    .product-description-section p {
        font-size: 0.85rem;
        line-height: 1.4;
    }

    .similar-products-section {
        padding: 20px 0;
    }

    .featured-header h2 {
        font-size: 1.2rem;
    }

    .featured-header {
        margin-bottom: 20px;
    }
}
    
    .product-price .price {
        font-size: 1.8rem;
    }
    
    .product-meta {
        grid-template-columns: 1fr;
    }
}


/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 40px;
    padding: 20px;
    flex-wrap: wrap;
}

.pagination-link {
    padding: 10px 14px;
    border: 1px solid #e8507e;
    border-radius: 6px;
    color: #e8507e;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
    cursor: pointer;
    display: inline-block;
}

.pagination-link:hover {
    background-color: #e8507e;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(232, 80, 126, 0.2);
}

.pagination-link.active {
    background-color: #e8507e;
    color: white;
    border-color: #e8507e;
    cursor: default;
}

.pagination-link.active:hover {
    transform: none;
}


/* Cart Badge */
.cart-icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #1a1a2e;
    transition: all 0.3s ease;
}

.cart-icon:hover {
    color: #e8507e;
}

.cart-badge {
    position: absolute;
    top: -12px;
    right: -12px;
    min-width: 24px;
    height: 24px;
    background-color: #e8507e;
    color: white;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(232, 80, 126, 0.3);
    animation: badgePulse 0.3s ease;
}

@keyframes badgePulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}


/* İndirim Stili */
.discount-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, #e8507e 0%, #d43d6a 100%);
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(232, 80, 126, 0.3);
    z-index: 10;
}

.slider-price.old-price {
    text-decoration: line-through;
    color: #bbb;
    font-size: 0.85rem;
    font-weight: 400;
    display: block;
    opacity: 0.7;
}

.slider-price.discount-price {
    color: #27ae60;
    font-size: 1.1rem;
    font-weight: 700;
    display: block;
    margin-top: 3px;
}

.price.old-price {
    text-decoration: line-through;
    color: #bbb;
    font-size: 0.85rem;
    font-weight: 400;
    display: block;
    opacity: 0.7;
}

.price.discount-price {
    color: #27ae60;
    font-size: 1rem;
    font-weight: 700;
    display: block;
    margin-top: 3px;
}


/* Mobile Categories Menu Styles */
.mobile-categories-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    z-index: 200;
    animation: slideInDown 0.3s ease;
}

@keyframes slideInDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #f0f0f0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.mobile-menu-header h4 {
    margin: 0;
    font-size: 1.2rem;
    color: white;
}

.close-menu-btn {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
}

.mobile-menu-item {
    display: block;
    padding: 15px 20px;
    border-bottom: 1px solid #f0f0f0;
    color: var(--dark-color);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.mobile-menu-item:hover {
    background-color: #f8f9fa;
    color: var(--primary-color);
    padding-left: 30px;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 150;
}


/* Navbar Mobil Optimizasyonu */
@media (max-width: 768px) {
    .navbar-search {
        display: none;
    }

    .navbar-container {
        gap: 12px;
        padding: 12px 12px;
    }

    .navbar-brand {
        font-size: 1.1rem;
    }

    .logo-img {
        height: 45px;
    }

    .navbar-right {
        gap: 10px;
    }

    .cart-icon {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .navbar-search {
        display: none;
    }

    .navbar-container {
        gap: 8px;
        padding: 10px 10px;
    }

    .navbar-brand {
        font-size: 1rem;
        min-width: 100px;
    }

    .logo-img {
        height: 40px;
    }

    .navbar-right {
        gap: 8px;
    }

    .navbar-toggle {
        order: 1;
    }

    .cart-icon {
        font-size: 1.5rem;
    }

    .cart-badge {
        width: 18px;
        height: 18px;
        font-size: 0.65rem;
        top: -5px;
        right: -5px;
    }
}


/* Mobil Menü Animasyon Refinements */
.mobile-categories-menu {
    max-width: 100vw;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.mobile-menu-content {
    padding: 0;
}

.mobile-menu-item {
    padding: 14px 18px;
    font-size: 0.95rem;
}

@media (max-width: 480px) {
    .mobile-menu-header {
        padding: 16px 18px;
    }

    .mobile-menu-header h4 {
        font-size: 1.1rem;
    }

    .mobile-menu-item {
        padding: 12px 16px;
        font-size: 0.9rem;
    }

    .close-menu-btn {
        font-size: 1.4rem;
    }
}

/* Overall Spacing Optimizations */
.section-header {
    padding: 0 15px;
}

.container > .featured-header {
    padding: 0 5px;
}

@media (max-width: 480px) {
    .featured-products-section .container {
        padding: 0 10px;
    }

    .category-slider-section .container {
        padding: 0 10px;
    }

    .cta-section .container {
        padding: 0 10px;
    }

    .services-section .container {
        padding: 0 10px;
    }
}


/* Product Actions Styling */
.product-actions {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 30px;
}

.btn-cart-large,
.btn-whatsapp-large {
    padding: 12px 25px;
    border: none;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-cart-large {
    background-color: var(--primary-color);
    color: white;
    flex: 1;
}

.btn-cart-large:hover {
    background-color: #d63a6f;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(232, 80, 126, 0.3);
}

.btn-whatsapp-large {
    background-color: #25d366;
    color: white;
    flex: 1;
    white-space: nowrap;
}

.btn-whatsapp-large:hover {
    background-color: #20ba5a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

/* Product Meta */
.product-meta {
    display: flex;
    gap: 20px;
    padding-top: 20px;
    border-top: 1px solid #e8e8e8;
}

.meta-item {
    display: flex;
    gap: 15px;
}

.meta-item i {
    font-size: 1.2rem;
    color: var(--primary-color);
    min-width: 30px;
}

.meta-title {
    display: block;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--dark-color);
}

.meta-text {
    display: block;
    font-size: 0.8rem;
    color: #999;
}

/* Product Price Box */
.product-price-box {
    background-color: #f9f9f9;
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 20px;
}

.price-label {
    display: block;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 8px;
}

.price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* Product Header */
.product-header {
    margin-bottom: 20px;
}

.product-header h1 {
    font-size: 2rem;
    color: var(--dark-color);
    margin-bottom: 10px;
}

/* Product Description */
.product-description-section {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid #e8e8e8;
}

.product-description-section h2 {
    font-size: 1.5rem;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.product-description-section p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Similar Products Section */
.similar-products-section {
    padding: 50px 0;
    background-color: white;
    margin-top: 30px;
}


/* Mobil Search Bar */
.mobile-search {
    padding: 12px 16px;
    border-bottom: 1px solid #f0f0f0;
    background-color: #f9f9f9;
}

.mobile-search form {
    display: flex;
    gap: 0;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    overflow: hidden;
    background: white;
}

.mobile-search input {
    flex: 1;
    border: none;
    padding: 8px 15px;
    font-size: 0.9rem;
    font-family: 'Poppins', sans-serif;
}

.mobile-search input:focus {
    outline: none;
}

.mobile-search button {
    border: none;
    background: none;
    padding: 8px 15px;
    cursor: pointer;
    color: var(--primary-color);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.mobile-search button:hover {
    color: var(--secondary-color);
}


/* Slider Title Link */
.slider-title-link {
    color: var(--dark-color);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    cursor: pointer;
}

.slider-title-link:hover {
    color: var(--primary-color);
}

.slider-info h4 .slider-title-link {
    color: var(--dark-color);
}

.slider-info h4 .slider-title-link:hover {
    color: var(--primary-color);
    text-decoration: underline;
}
