.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: relative;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-content { 
    position: relative; 
    z-index: 2; 
}

.hero-floating {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.modern-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.modern-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.gradient-text {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-icon {
    background: white;
    border: 1px solid #667eea;
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    color: #667eea;
}

.feature-icon:hover {
    transform: translateY(-5px) rotate(5deg);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.2);
    border-color: #764ba2;
}

.section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, #e2e8f0, transparent);
    margin: 4rem 0;
}

.age-circle {
    width: 90px;
    height: 90px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: #fff;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(135deg, var(--age-color-1), var(--age-color-2));
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.age-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    overflow: hidden;
}

.age-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.age-card:hover .age-circle {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.category-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: white;
    border: none;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}
  
.category-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.product-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.product-card-premium {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    border-radius: 24px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.product-card-premium:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.product-image-container {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    aspect-ratio: 1;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-overlay {
    opacity: 0;
    background: rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.product-card-premium:hover .product-overlay {
    opacity: 1;
}

.product-image {
    transition: all 0.4s ease;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    padding: 0px;
}

.product-card-premium:hover .product-image {
    transform: scale(1.05);
}

.product-title {
    transition: color 0.3s ease;
    line-height: 1.4;
}

.product-card-premium:hover .product-title a {
    color: #667eea !important;
}

.age-scroll-container {
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.age-scroll-container::-webkit-scrollbar {
    display: none;
}

.age-0-3 { --age-color-1: #667eea; --age-color-2: #764ba2; }
.age-4-7 { --age-color-1: #f093fb; --age-color-2: #f5576c; }
.age-8-12 { --age-color-1: #4facfe; --age-color-2: #00f2fe; }
.age-13plus { --age-color-1: #43e97b; --age-color-2: #38f9d7; }

@media (max-width: 768px) {
    html, body {
        overflow-x: hidden;
        width: 100%;
    }
    
    .container-fluid {
        padding-left: 8px;
        padding-right: 8px;
        width: 100%;
        max-width: 100%;
    }
    
    .container {
        width: 100%;
        max-width: 100%;
        padding-left: 8px;
        padding-right: 8px;
    }
    
    .row {
        margin-left: 0;
        margin-right: 0;
    }
    
    .hero {
        min-height: 70vh;
        padding: 2rem 0;
    }
    
    .display-3 {
        font-size: 2.2rem !important;
        line-height: 1.3;
    }
    
    .display-6, .display-5 {
        font-size: 1.6rem !important;
    }
    
    .btn-lg {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .btn-modern {
        border-radius: 15px;
        padding: 8px 15px;
        font-size: 0.85rem;
    }
    
    .age-circle {
        width: 75px;
        height: 75px;
        font-size: 1.8rem;
    }
    
    .feature-icon {
        width: 65px;
        height: 65px;
        border-radius: 15px;
        border: 2px solid #667eea !important;
    }
    
    .modern-card {
        padding: 1.2rem !important;
        border-radius: 15px;
    }
    
    .product-card-premium {
        border-radius: 15px;
    }
    
    .category-card {
        padding: 1.5rem !important;
        border-radius: 15px;
        border: none !important;
    }
    
    .section-divider {
        margin: 1.5rem 0;
    }
    
    .content-section {
        padding: 2.5rem 0;
    }
    
    .page-header {
        padding: 2.5rem 0 1.5rem;
    }

    .product-card-premium .card-body,
    .modern-card .card-body {
        padding: 1rem !important;
    }

    .product-card-premium .product-title,
    .modern-card .product-title {
        font-size: 0.95rem;
        margin-bottom: 0.5rem !important;
    }

    .product-card-premium .h6,
    .modern-card .h5 {
        font-size: 1rem !important;
    }

    .product-card-premium .text-muted.small,
    .modern-card .text-muted.small {
        font-size: 0.75rem !important;
        flex-wrap: wrap;
        justify-content: center;
    }

    .product-card-premium .text-muted.small span,
    .modern-card .text-muted.small span {
        margin: 0 0.25rem;
    }

    /* Mobile feeds page image improvements */
    .col-md-4 .product-image-container {
        aspect-ratio: auto !important;
        height: auto !important;
        min-height: 200px !important;
        max-height: none !important;
    }
    
    .col-md-4 .product-image {
        padding: 2px !important;
    }

    .col-6 .product-card-premium .product-image {
        padding: 2px !important;
    }

    /* Homepage mobile image fix */
    .product-image {
        padding: 5px !important;
    }

    /* Homepage specific image fix */
    .col-lg-3 .product-image {
        padding: 0px !important;
    }

    .col-6 .product-card-premium .card-body {
        padding: 0.75rem !important;
    }

    .col-6 .product-card-premium .product-title {
        font-size: 0.85rem !important;
        line-height: 1.2 !important;
    }

    .col-6 .product-card-premium .h6 {
        font-size: 0.9rem !important;
    }

    .col-6 .product-card-premium .small {
        font-size: 0.7rem !important;
    }

    .col-6 .product-card-premium .badge {
        font-size: 0.65rem !important;
        padding: 0.2rem 0.4rem !important;
    }

    .modern-card .row.g-0 > div {
        flex-direction: column;
    }

    .modern-card .col-md-3,
    .modern-card .col-md-9 {
        width: 100%;
    }

    .modern-card .col-md-3 {
        margin-bottom: 1rem;
    }

    .product-card-premium .card-footer {
        padding: 1rem !important;
    }

    .product-card-premium .card-footer .d-grid {
        gap: 0.5rem !important;
    }

    .product-card-premium .card-footer .btn {
        padding: 0.5rem 1rem !important;
        font-size: 0.8rem !important;
    }
    
    /* Mobile product grid optimizations */
    .col-6 .product-card-premium {
        margin-bottom: 1rem;
    }
    
    .col-6 .product-card-premium .product-image-container {
        aspect-ratio: 1;
        min-height: 140px !important;
        max-height: 180px !important;
    }
    
    .col-6 .product-card-premium .card-body {
        padding: 0.6rem !important;
    }
    
    .col-6 .product-card-premium .card-footer {
        padding: 0.6rem !important;
        padding-top: 0 !important;
    }
    
    .col-6 .product-card-premium .d-grid {
        gap: 0.3rem !important;
    }
    
    .col-6 .product-card-premium .product-overlay {
        display: none !important;
    }
    
    .col-6 .product-card-premium .card-footer .btn {
        padding: 0.4rem 0.6rem !important;
        font-size: 0.75rem !important;
    }
    
    .col-6 .badge {
        font-size: 0.6rem !important;
        padding: 0.15rem 0.3rem !important;
    }
    
    .col-6 .h6 {
        font-size: 0.85rem !important;
        margin-bottom: 0.3rem !important;
    }
    
    .col-6 .text-muted.small {
        font-size: 0.65rem !important;
    }
    
    .col-6 .product-title {
        font-size: 0.8rem !important;
        line-height: 1.1 !important;
        margin-bottom: 0.4rem !important;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .dropdown-toggle {
        font-size: 0.85rem !important;
        padding: 0.5rem 0.75rem !important;
    }

    .form-select-sm {
        font-size: 0.8rem !important;
        padding: 0.4rem 0.6rem !important;
    }

    .btn-group .btn-sm {
        padding: 0.4rem 0.6rem !important;
        font-size: 0.8rem !important;
    }
    
    /* Mobile filter optimizations */
    .dropdown {
        flex: 1;
        min-width: 0;
    }
    
    .dropdown-toggle {
        width: 100%;
        text-align: left;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .bg-white.p-3 {
        padding: 0.5rem !important;
    }
    
    .bg-white.p-4 {
        padding: 0.75rem !important;
    }
    
    input, textarea, select, .form-control, .form-select {
        font-size: 16px !important;
    }
    
    /* Mobile filters and controls */
    .dropdown-toggle {
        font-size: 0.8rem !important;
        padding: 0.4rem 0.6rem !important;
    }
    
    .dropdown-menu {
        font-size: 0.85rem !important;
    }
    
    .btn {
        padding: 0.6rem 1rem !important;
        font-size: 0.85rem !important;
    }
    
    .btn-lg {
        padding: 0.7rem 1.2rem !important;
        font-size: 0.9rem !important;
    }
    
    /* Mobile tab alignment */
    .nav-tabs {
        justify-content: center !important;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .nav-tabs .nav-item {
        flex-shrink: 0;
    }
    
    .nav-tabs .nav-link {
        white-space: nowrap;
        padding: 0.5rem 0.75rem !important;
        font-size: 0.85rem !important;
    }
    
    /* Feeds page specific mobile optimizations */
    .container-fluid.bg-light {
        padding-left: 5px !important;
        padding-right: 5px !important;
    }
    
    .container-fluid.bg-light .container {
        padding-left: 5px !important;
        padding-right: 5px !important;
    }
    
    .row.mb-4 {
        margin-bottom: 0.75rem !important;
    }
    
    .row.g-4 {
        --bs-gutter-x: 0.5rem;
        --bs-gutter-y: 0.75rem;
    }
}

.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
}

.stagger-item {
    opacity: 0;
    transform: translateY(30px) scale(0.9);
}

.scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.btn-modern {
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 600;
    text-transform: none;
    transition: all 0.3s ease;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn-modern:hover::before {
    left: 100%;
}

.btn-primary-modern {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.btn-primary-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
    color: white;
}

.btn-outline-primary.btn-modern {
    border: 2px solid #667eea;
    color: #667eea;
    background: rgba(102, 126, 234, 0.05);
}

.btn-outline-primary.btn-modern:hover {
    background: #667eea;
    border-color: #667eea;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

/* Green Button Styles */
.btn-success.btn-modern {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.btn-success.btn-modern:hover {
    background: linear-gradient(135deg, #20c997 0%, #28a745 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.4);
    color: white;
}

.btn-outline-success.btn-modern {
    border: 2px solid #28a745;
    color: #28a745;
    background: rgba(40, 167, 69, 0.05);
}

.btn-outline-success.btn-modern:hover {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    border-color: #28a745;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

/* Professional Tab Styles */
.nav-pills .nav-link {
    transition: all 0.3s ease;
}

.nav-pills .nav-link:hover {
    background: rgba(255,255,255,0.3) !important;
    transform: translateY(-2px);
}

.nav-pills .nav-link.active {
    background: rgba(255,255,255,0.2) !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

* {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    width: 100%;
    overflow-x: hidden;
}

body {
    width: 100%;
    overflow-x: hidden;
    position: relative;
    min-width: 320px;
}

img {
    max-width: 100%;
    height: auto;
}

.loading {
    opacity: 0.7;
    pointer-events: none;
}

.page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.content-section {
    padding: 4rem 0;
}

@media (max-width: 768px) {
    .page-header {
        padding: 2rem 0 1rem;
    }
    .content-section {
        padding: 2rem 0;
    }
}

.product-detail-main-image {
    width: 100%;
    height: 400px;
    object-fit: contain;
    object-position: center;
    background: #fff;
    border-radius: 12px;
    cursor: pointer;
}

.product-thumbnail {
    width: 80px;
    height: 80px;
    object-fit: contain;
    object-position: center;
    background: #f8f9fa;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    opacity: 0.7;
    touch-action: manipulation;
}

.product-thumbnail:hover,
.product-thumbnail.active-thumbnail {
    border-color: #667eea;
    transform: scale(1.05);
    opacity: 1;
}

.order-product-image-container {
    width: 80px;
    height: 80px;
    background: #f8f9fa;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}

.order-product-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    padding: 8px;
}

.cart-product-image {
    width: 80px;
    height: 80px;
    object-fit: contain;
    object-position: center;
    background: #f8f9fa;
    border-radius: 8px;
    padding: 8px;
    flex-shrink: 0;
}

.cart-product-name {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.3;
    max-height: 2.6em;
}

@media (max-width: 768px) {
    .product-detail-main-image {
        height: 280px;
    }
    
    .card {
        margin-bottom: 1rem !important;
    }
    
    .card-body {
        padding: 1rem !important;
    }
    
    .badge {
        font-size: 0.7rem !important;
        padding: 0.25rem 0.5rem !important;
    }
    
    .h2, h2 {
        font-size: 1.4rem !important;
    }
    
    .h3, h3 {
        font-size: 1.2rem !important;
    }
    
    .h5, h5 {
        font-size: 1rem !important;
    }
    
    .h6, h6 {
        font-size: 0.9rem !important;
    }
    
    .product-thumbnail {
        width: 60px;
        height: 60px;
        min-height: 60px;
        min-width: 60px;
    }
    
    .order-product-image-container {
        width: 60px;
        height: 60px;
    }
    
    .cart-product-image {
        width: 60px;
        height: 60px;
        padding: 6px;
    }
}

.image-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}

.image-modal-content {
    position: relative;
    width: 50%;
    height: 70%;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.image-modal img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 8px;
}

.image-modal-close {
    position: absolute;
    top: -15px;
    right: -15px;
    background: #dc3545;
    border: none;
    color: white;
    font-size: 18px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.image-modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #667eea;
    border: none;
    color: white;
    font-size: 16px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.image-modal-prev {
    left: -20px;
}

.image-modal-next {
    right: -20px;
}

.image-modal-nav:hover {
    background: #5a6ce0;
    transform: translateY(-50%) scale(1.1);
}

.image-modal-close:hover {
    background: #c82333;
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .image-modal-content {
        width: 90%;
        height: 50%;
    }
    
    .image-modal-close {
        top: -12px;
        right: -12px;
        width: 30px;
        height: 30px;
        font-size: 16px;
    }
    
    .image-modal-nav {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .image-modal-prev {
        left: -15px;
    }
    
    .image-modal-next {
        right: -15px;
    }
}

/* Return Policy Styles */
.return-deadline-info {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 1px solid #dee2e6;
    transition: all 0.3s ease;
}

.return-deadline-info:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.return-process-step {
    transition: all 0.3s ease;
    cursor: pointer;
}

.return-process-step:hover {
    transform: translateY(-2px);
}

.return-conditions {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 1px solid #dee2e6;
    transition: all 0.3s ease;
}

.return-conditions:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.return-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.return-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.return-status-badge {
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Product Card Name Consistency Fix */
.product-title {
    height: 2.8em;
    line-height: 1.4;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
}

.return-image-preview {
    max-height: 100px;
    object-fit: cover;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.return-image-preview:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.return-modal .modal-content {
    border-radius: 20px;
    border: none;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.return-modal .modal-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 20px 20px 0 0;
    border: none;
}

.return-modal .btn-close {
    filter: invert(1);
}

@media (max-width: 768px) {
    .return-deadline-info {
        padding: 1rem !important;
        margin-bottom: 1rem !important;
    }
    
    .return-conditions {
        padding: 1rem !important;
        margin-top: 1rem !important;
    }
    
    .return-process-step {
        margin-bottom: 1rem;
        padding: 0.75rem;
        background: rgba(255, 255, 255, 0.8);
        border-radius: 12px;
        border: 1px solid rgba(0, 0, 0, 0.1);
    }
}
/* Product Tab Styling */
.product-tab {
    border-radius: 25px !important;
    white-space: nowrap;
    transition: all 0.3s ease;
    background: rgba(255,255,255,0.1) !important;
    border: 1px solid rgba(255,255,255,0.2) !important;
}

.product-tab:hover {
    background: rgba(255,255,255,0.2) !important;
    transform: translateY(-1px);
}

.product-tab.active {
    background: rgba(255,255,255,0.9) !important;
    color: #667eea !important;
    border: 1px solid rgba(255,255,255,0.5) !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.product-tab.active i,
.product-tab.active span {
    color: #667eea !important;
}

/* Mobile tab alignment */
@media (max-width: 768px) {
    #productTabs {
        padding-left: 8px;
    }
    
    .product-tab {
        font-size: 0.9rem;
        padding: 8px 12px !important;
    }
}
/* Fix active tab text color */
.product-tab.active {
    color: #333 !important;
}

.product-tab.active i,
.product-tab.active span {
    color: #333 !important;
}