/* Reset ve temel stil */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Quicksand', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
    font-weight: 400;
}

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

/* Top Header Stili */
.top-header {
    background: linear-gradient(90deg, #ff6b9d 0%, #f06292 100%);
    color: white;
    padding: 8px 0;
    font-size: 13px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.top-header-content {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.top-header-title {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: white;
    font-family: 'Quicksand', sans-serif;
}

.top-header a {
    color: white;
    text-decoration: none;
    transition: all 0.3s;
    font-weight: 500;
}

.top-header a:hover {
    color: #ffc1cc;
}

/* Search Box */
.search-box {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
}

.search-box input {
    padding: 12px 50px 12px 20px;
    border: 2px solid #e1e5e9;
    border-radius: 25px;
    width: 100%;
    font-size: 14px;
    background: white;
    transition: all 0.3s;
    outline: none;
    font-family: 'Quicksand', sans-serif;
    font-weight: 500;
}

.search-box input:focus {
    border-color: #ff6b9d;
    box-shadow: 0 0 0 3px rgba(255,107,157,0.1);
}

.search-box input::placeholder {
    color: #8e9aaf;
}

.search-box button {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    background: #ff6b9d;
    border: none;
    color: white;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 50%;
    font-size: 16px;
    transition: all 0.3s;
}

.search-box button:hover {
    background: #f06292;
    transform: translateY(-50%) scale(1.05);
}

/* Ana Header */
.main-header {
    background-color: white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-header-content {
    display: grid;
    grid-template-columns: 200px 1fr 150px;
    align-items: center;
    gap: 40px;
}

/* Header Actions */
.header-actions {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.account-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: #4a5568;
    font-weight: 600;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.3s;
    font-size: 14px;
    font-family: 'Quicksand', sans-serif;
}

.account-btn:hover {
    background-color: #fdf2f8;
    color: #ff6b9d;
}

/* Account Dropdown */
.account-dropdown {
    position: relative;
}

.account-dropdown-content {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    top: 100%;
    right: 0;
    background-color: white;
    min-width: 220px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-radius: 12px;
    padding: 12px 0;
    z-index: 1001;
    border: 1px solid #e1e5e9;
    margin-top: 2px;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    pointer-events: none;
}

/* Invisible bridge to prevent dropdown from closing */
.account-dropdown-content::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
    height: 10px;
    background: transparent;
}

.account-dropdown:hover .account-dropdown-content,
.account-dropdown-content:hover {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* Auth Buttons */
.account-auth-buttons {
    display: flex;
    gap: 8px;
    padding: 12px 16px;
    margin-bottom: 8px;
}

.auth-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 12px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s;
    font-family: 'Quicksand', sans-serif;
}

.auth-btn i {
    font-size: 12px;
}

.login-btn {
    background-color: #ff6b9d;
    color: white;
}

.login-btn:hover {
    background-color: #f06292;
    transform: translateY(-1px);
}

.register-btn {
    background-color: #f8f9fa;
    color: #495057;
    border: 1px solid #e1e5e9;
}

.register-btn:hover {
    background-color: #e9ecef;
    color: #333;
}

/* Divider */
.account-divider {
    height: 1px;
    background-color: #e9ecef;
    margin: 8px 16px;
}

/* Menu Items */
.account-menu-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    text-decoration: none;
    color: #495057;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s;
    font-family: 'Quicksand', sans-serif;
}

.account-menu-item:hover {
    background-color: #fdf2f8;
    color: #ff6b9d;
}

.menu-icon {
    font-size: 14px;
    width: 18px;
    text-align: center;
    color: #ff6b9d;
}

/* Category Icons */
.category-icon {
    font-size: 14px;
    width: 18px;
    text-align: center;
    color: #ff6b9d;
    margin-right: 4px;
}

.dropdown-content a {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    color: #333;
    margin: 0;
}

.account-icon {
    font-size: 16px;
    margin-right: 2px;
}

/* Navigation Section */
.nav-section {
    background-color: #f8f9fa;
    border-top: 1px solid #e9ecef;
    padding: 0;
}

.nav-section .main-nav ul {
    justify-content: flex-start;
    gap: 0;
    margin: 0;
    padding: 0;
}

.nav-section .main-nav li {
    border-right: 1px solid #e9ecef;
}

.nav-section .main-nav li:last-child {
    border-right: none;
}

.nav-section .main-nav a {
    padding: 15px 25px;
    color: #495057;
    font-weight: 600;
    font-size: 14px;
    border-radius: 0;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s;
    font-family: 'Quicksand', sans-serif;
}

.nav-section .main-nav a i {
    font-size: 12px;
}

.nav-section .main-nav a:hover {
    background-color: white;
    color: #ff6b9d;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

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

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

.logo-text {
    font-size: 28px;
    font-weight: bold;
    color: #6c5ce7;
    display: block;
}

/* Navigation */
.main-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.main-nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    padding: 10px 15px;
    border-radius: 8px;
    transition: all 0.3s;
    position: relative;
}

.main-nav a:hover {
    background-color: #f8f9fa;
    color: #6c5ce7;
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    border-radius: 8px;
    padding: 10px 0;
    z-index: 1001;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    display: block;
    padding: 10px 20px;
    color: #333;
    margin: 0;
}

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

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #333;
}

/* Footer */
.footer {
    background-color: #f8f9fa;
    color: #495057;
    padding: 40px 0 20px;
    margin-top: 50px;
    border-top: 1px solid #e9ecef;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

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

.footer-section h3 {
    color: #ff6b9d;
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 700;
    font-family: 'Quicksand', sans-serif;
}

.footer-logo h3 {
    margin-bottom: 0;
}

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

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

.footer-section a {
    color: #6c757d;
    text-decoration: none;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 4px 0;
    font-weight: 500;
    font-family: 'Quicksand', sans-serif;
}

.footer-section a:hover {
    color: #ff6b9d;
    transform: translateX(3px);
}

.footer-category-icon {
    font-size: 14px;
    width: 16px;
    color: #ff6b9d;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px solid #dee2e6;
    color: #6c757d;
    font-family: 'Quicksand', sans-serif;
    font-weight: 500;
}

/* Slider Mobile Responsive */
@media (max-width: 768px) {
    .hero-slider {
        height: 400px;
    }
    
    .slide-text h1 {
        font-size: 2.5rem;
    }
    
    .slide-text p {
        font-size: 1.1rem;
        margin-bottom: 25px;
    }
    
    .cta-button {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .slider-nav {
        width: 50px;
        height: 50px;
        font-size: 16px;
    }
    
    .slider-nav.prev {
        left: 15px;
    }
    
    .slider-nav.next {
        right: 15px;
    }
    
    .slider-dots {
        bottom: 20px;
        gap: 10px;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 480px) {
    .hero-slider {
        height: 350px;
    }
    
    .slide-text h1 {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .slide-text p {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    
    .slide-text {
        padding: 20px 0;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .top-header-title {
        font-size: 13px;
    }
    
    .main-header-content {
        grid-template-columns: 1fr;
        gap: 15px;
        text-align: center;
    }
    
    .logo-img {
        height: 60px;
    }
    
    .header-actions {
        justify-content: center;
    }
    
    .account-dropdown-content {
        right: -50px;
        min-width: 200px;
    }
    
    .account-auth-buttons {
        flex-direction: column;
        gap: 6px;
    }
    
    .nav-section .main-nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .nav-section .main-nav li {
        border-right: none;
        border-bottom: 1px solid #e9ecef;
    }
    
    .mobile-menu-toggle {
        display: block;
        align-self: flex-end;
    }
    
    .main-nav {
        display: none;
        width: 100%;
    }
    
    .main-nav.active {
        display: block;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 10px;
        background-color: white;
        padding: 20px;
        border-radius: 8px;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    }
    
    .dropdown-content {
        position: static;
        display: block;
        box-shadow: none;
        background-color: #f8f9fa;
        margin-left: 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* Ana içerik alanı */
.main-content {
    min-height: 400px;
    padding: 0;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    align-items: center;
}

.slide.active {
    opacity: 1;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 2;
    width: 100%;
    color: white;
}

.slide-text {
    max-width: 600px;
    padding: 40px 0;
}

.slide-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: 'Quicksand', sans-serif;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.slide-text p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    font-weight: 500;
    opacity: 0.95;
    line-height: 1.5;
}

.cta-button {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(10px);
    font-family: 'Quicksand', sans-serif;
}

.cta-button:hover {
    background: rgba(255,255,255,0.3);
    border-color: rgba(255,255,255,0.5);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    z-index: 3;
}

.slider-nav:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-50%) scale(1.1);
}

.slider-nav.prev {
    left: 30px;
}

.slider-nav.next {
    right: 30px;
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 3;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active,
.dot:hover {
    background: white;
    transform: scale(1.2);
}

/* Hoş geldin mesajı */
.welcome-message {
    text-align: center;
    font-size: 24px;
    color: #6c5ce7;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: 'Quicksand', sans-serif;
}

/* Popüler Ürünler Bölümü */
.popular-products {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #fff5f8 100%);
}

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

.section-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #2d3436;
    margin-bottom: 15px;
    font-family: 'Quicksand', sans-serif;
}

.section-header p {
    font-size: 1.2rem;
    color: #636e72;
    font-weight: 500;
}

/* Product Sections - Tab Design */
.product-sections {
    max-width: 100%;
    margin-top: 40px;
}

.tabs-container {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    overflow: hidden;
}

/* Tab Navigation */
.tabs-nav {
    display: flex;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-bottom: 2px solid #dee2e6;
}

.tab-btn {
    flex: 1;
    background: transparent;
    border: none;
    padding: 20px 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: #636e72;
    transition: all 0.3s ease;
    position: relative;
}

.tab-btn i {
    font-size: 1.1rem;
}

.tab-btn:hover {
    background: rgba(255, 107, 157, 0.1);
    color: #ff6b9d;
}

.tab-btn.active {
    background: linear-gradient(135deg, #ff6b9d 0%, #f06292 100%);
    color: white;
}

.tab-btn.active:hover {
    background: linear-gradient(135deg, #f06292 0%, #e91e63 100%);
}

/* Tab Content */
.tab-content {
    display: none;
    padding: 30px;
    animation: fadeIn 0.3s ease-in-out;
}

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

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

.section-title {
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f1f2f6;
    text-align: center;
}

.section-title h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2d3436;
    font-family: 'Quicksand', sans-serif;
}

.section-title h3 i {
    color: #ff6b9d;
    font-size: 1.2rem;
}

.product-section:nth-child(2) .section-title h3 i {
    color: #74b9ff;
}

.product-section:nth-child(3) .section-title h3 i {
    color: #00b894;
}

.products-table-wrapper {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    margin-bottom: 25px;
}

.products-table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Quicksand', sans-serif;
}

.products-table thead {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.products-table th {
    padding: 15px 12px;
    text-align: left;
    font-weight: 600;
    color: #2d3436;
    font-size: 0.9rem;
    border-bottom: 2px solid #dee2e6;
}

.products-table th:first-child {
    width: auto;
    min-width: 200px;
}

.products-table th:nth-child(2) {
    width: 120px;
}

.products-table th:nth-child(3) {
    width: 80px;
    text-align: center;
}

.products-table th:nth-child(4) {
    width: 70px;
    text-align: center;
}

.products-table th:last-child {
    width: 50px;
    text-align: center;
}

.products-table tbody tr {
    transition: all 0.3s ease;
    border-bottom: 1px solid #f1f2f6;
}

.products-table tbody tr:hover {
    background: linear-gradient(135deg, #fff5f8 0%, #f8f9ff 100%);
    transform: scale(1.01);
}

.products-table tbody tr:last-child {
    border-bottom: none;
}

.products-table td {
    padding: 12px;
    vertical-align: middle;
    font-size: 0.85rem;
}

.product-name {
    font-weight: 600;
    color: #2d3436;
    line-height: 1.3;
}

.category-tag {
    background: linear-gradient(135deg, #ff6b9d 0%, #f06292 100%);
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
    white-space: nowrap;
}

.product-section:nth-child(2) .category-tag {
    background: linear-gradient(135deg, #74b9ff 0%, #0984e3 100%);
}

.product-section:nth-child(3) .category-tag {
    background: linear-gradient(135deg, #00b894 0%, #00a085 100%);
}

.rating-cell {
    text-align: center;
    font-weight: 600;
    color: #2d3436;
}

.review-count {
    text-align: center;
    color: #636e72;
    font-weight: 500;
}

.detail-link {
    display: inline-block;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 4px;
    border-radius: 4px;
}

.detail-link:hover {
    background: rgba(255, 107, 157, 0.1);
    transform: scale(1.2);
}

.product-section:nth-child(2) .detail-link:hover {
    background: rgba(116, 185, 255, 0.1);
}

.product-section:nth-child(3) .detail-link:hover {
    background: rgba(0, 184, 148, 0.1);
}

/* Popüler Ürünler - Mobile Responsive */
@media (max-width: 1200px) {
    .tabs-container {
        margin: 0 10px;
    }
    
    .tab-btn {
        padding: 15px 12px;
        font-size: 0.9rem;
    }
    
    .tab-btn span {
        display: none;
    }
    
    .tab-content {
        padding: 25px;
    }
    
    .products-table th,
    .products-table td {
        padding: 10px 8px;
        font-size: 0.8rem;
    }
    
    .products-table th:nth-child(2) {
        width: 100px;
    }
    
    .category-tag {
        font-size: 0.7rem;
        padding: 3px 6px;
    }
}

@media (max-width: 992px) {
    .tab-btn {
        padding: 12px 8px;
        flex-direction: column;
        gap: 4px;
    }
    
    .tab-btn span {
        display: block;
        font-size: 0.8rem;
    }
    
    .tab-content {
        padding: 20px;
    }
    
    .products-table th,
    .products-table td {
        padding: 12px 10px;
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .popular-products {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .section-header p {
        font-size: 1.1rem;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .tabs-container {
        border-radius: 15px;
        margin: 0 5px;
    }
    
    .tab-btn {
        padding: 15px 8px;
        font-size: 0.85rem;
    }
    
    .tab-content {
        padding: 20px 15px;
    }
    
    .section-title h3 {
        font-size: 1.2rem;
    }
    
    .products-table-wrapper {
        overflow-x: auto;
    }
    
    .products-table {
        min-width: 500px;
    }
    
    .products-table th,
    .products-table td {
        padding: 10px 8px;
        font-size: 0.8rem;
    }
    
    .product-name {
        max-width: 200px;
    }
    
    .view-all-btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .popular-products {
        padding: 40px 0;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    .tabs-container {
        margin: 0;
        border-radius: 12px;
    }
    
    .tab-btn {
        padding: 12px 5px;
        font-size: 0.8rem;
    }
    
    .tab-btn i {
        font-size: 1rem;
    }
    
    .tab-content {
        padding: 15px 10px;
    }
    
    .section-title h3 {
        font-size: 1.1rem;
    }
    
    .products-table {
        min-width: 450px;
    }
    
    .products-table th,
    .products-table td {
        padding: 8px 6px;
        font-size: 0.75rem;
    }
    
    .products-table th:first-child {
        min-width: 150px;
    }
    
    .products-table th:nth-child(2) {
        width: 80px;
    }
    
    .products-table th:nth-child(3),
    .products-table th:nth-child(4) {
        width: 60px;
    }
    
    .products-table th:last-child {
        width: 40px;
    }
    
    .product-name {
        max-width: 140px;
        font-size: 0.75rem;
    }
    
    .category-tag {
        font-size: 0.65rem;
        padding: 2px 5px;
    }
    
    .rating-cell {
        font-size: 0.7rem;
    }
    
    .review-count {
        font-size: 0.7rem;
    }
    
    .detail-link {
        font-size: 1rem;
        padding: 2px;
    }
    
    .view-all-btn {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
}

.view-all {
    text-align: center;
    margin-top: 20px;
}

.view-all-btn {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b9d 0%, #f06292 100%);
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    font-family: 'Quicksand', sans-serif;
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.3);
}

.view-all-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 157, 0.4);
}

.product-section:nth-child(2) .view-all-btn {
    background: linear-gradient(135deg, #74b9ff 0%, #0984e3 100%);
    box-shadow: 0 4px 15px rgba(116, 185, 255, 0.3);
}

.product-section:nth-child(2) .view-all-btn:hover {
    box-shadow: 0 8px 25px rgba(116, 185, 255, 0.4);
}

.product-section:nth-child(3) .view-all-btn {
    background: linear-gradient(135deg, #00b894 0%, #00a085 100%);
    box-shadow: 0 4px 15px rgba(0, 184, 148, 0.3);
}

.product-section:nth-child(3) .view-all-btn:hover {
    box-shadow: 0 8px 25px rgba(0, 184, 148, 0.4);
}

.view-all-btn.weekly {
    background: linear-gradient(135deg, #ff6b9d 0%, #f06292 100%);
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.3);
}

.view-all-btn.weekly:hover {
    box-shadow: 0 8px 25px rgba(255, 107, 157, 0.4);
}

.view-all-btn.monthly {
    background: linear-gradient(135deg, #74b9ff 0%, #0984e3 100%);
    box-shadow: 0 4px 15px rgba(116, 185, 255, 0.3);
}

.view-all-btn.monthly:hover {
    box-shadow: 0 8px 25px rgba(116, 185, 255, 0.4);
}

.view-all-btn.yearly {
    background: linear-gradient(135deg, #00b894 0%, #00a085 100%);
    box-shadow: 0 4px 15px rgba(0, 184, 148, 0.3);
}

.view-all-btn.yearly:hover {
    box-shadow: 0 8px 25px rgba(0, 184, 148, 0.4);
} 