/* ========================================
   ليك لوك - LekLook Store
   Main Stylesheet
======================================== */

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Cairo', sans-serif;
    color: var(--text-color);
    background-color: var(--background-color);
    direction: rtl;
    text-align: right;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--primary-color);
}

img {
    max-width: 100%;
    height: auto;
}

/* ========================================
   Top Bar
======================================== */
.top-bar {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    padding: 8px 0;
    font-size: 14px;
}

.top-bar a {
    color: #fff;
    margin-left: 20px;
    font-size: 13px;
}

.top-bar a:hover {
    opacity: 0.8;
}

.top-bar-right {
    display: flex;
    align-items: center;
}

.top-bar-left {
    text-align: left;
}

.social-links a {
    display: inline-block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    margin-left: 8px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #fff;
    color: var(--primary-color);
}

/* ========================================
   Navbar
======================================== */
.navbar {
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.navbar-brand img {
    transition: transform 0.3s ease;
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

.navbar-nav .nav-link {
    font-weight: 600;
    padding: 10px 20px !important;
    color: var(--text-color);
    position: relative;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    right: 20px;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: calc(100% - 40px);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color);
}

/* Search Form */
.search-form {
    min-width: 280px;
}

.search-form .form-control {
    border: 2px solid #f0f0f0;
    border-left: none;
    padding: 8px 15px;
    font-size: 14px;
}

.search-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: none;
}

.search-form .btn {
    background: var(--primary-color);
    border: 2px solid var(--primary-color);
    color: #fff;
    padding: 8px 20px;
}

.search-form .btn:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
}

/* Icons */
.navbar-icons {
    gap: 15px;
}

.icon-link {
    font-size: 20px;
    color: var(--text-color);
    position: relative;
}

.icon-link:hover {
    color: var(--primary-color);
}

.badge-count {
    position: absolute;
    top: -8px;
    left: -8px;
    background: var(--primary-color);
    color: #fff;
    font-size: 11px;
    padding: 2px 6px;
    border-radius: 50%;
    font-weight: 600;
    min-width: 20px;
    text-align: center;
}

/* ========================================
   Buttons
======================================== */
.btn-primary {
    background: var(--primary-color);
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 20, 147, 0.3);
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 8px;
    background: transparent;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: #fff;
}

/* ========================================
   Product Card
======================================== */
.product-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    margin-bottom: 30px;
    position: relative;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.product-card-image {
    position: relative;
    overflow: hidden;
    padding-top: 100%;
}

.product-card-image img {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-card-image img {
    transform: scale(1.1);
}

.product-badges {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 2;
}

.badge {
    display: block;
    padding: 5px 12px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 5px;
    border-radius: 20px;
}

.badge-new {
    background: #28a745;
    color: #fff;
}

.badge-sale {
    background: #dc3545;
    color: #fff;
}

.badge-featured {
    background: var(--primary-color);
    color: #fff;
}

.product-actions {
    position: absolute;
    top: 15px;
    left: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.3s ease;
}

.product-card:hover .product-actions {
    opacity: 1;
    transform: translateX(0);
}

.product-action-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
}

.product-action-btn:hover {
    background: var(--primary-color);
    color: #fff;
    transform: scale(1.1);
}

.product-card-body {
    padding: 20px;
}

.product-brand {
    font-size: 13px;
    color: #999;
    margin-bottom: 5px;
}

.product-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-color);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.price-current {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
}

.price-old {
    font-size: 16px;
    color: #999;
    text-decoration: line-through;
}

.discount-percentage {
    background: #dc3545;
    color: #fff;
    padding: 2px 8px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 10px;
}

.stars {
    color: #ffc107;
}

.rating-count {
    font-size: 13px;
    color: #999;
}

.add-to-cart-btn {
    width: 100%;
    padding: 12px;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.add-to-cart-btn:hover {
    background: var(--secondary-color);
}

/* ========================================
   Footer
======================================== */
.footer {
    background: #1a1a1a;
    color: #fff;
    padding: 60px 0 0;
    margin-top: 80px;
}

.footer-widget h5 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

.footer-widget p {
    color: #ccc;
    line-height: 1.8;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #ccc;
    font-size: 15px;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-right: 5px;
}

.contact-info {
    list-style: none;
    padding: 0;
}

.contact-info li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ccc;
}

.contact-info i {
    color: var(--primary-color);
    width: 20px;
}

.social-links-footer {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.social-links-footer a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.social-links-footer a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.payment-methods {
    text-align: center;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
}

.payment-methods h6 {
    color: #fff;
    margin-bottom: 20px;
    font-weight: 600;
}

.payment-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.payment-icons img {
    height: 35px;
    filter: brightness(0) invert(1);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.payment-icons img:hover {
    opacity: 1;
    transform: scale(1.1);
}

.payment-cod {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-size: 14px;
}

.footer-bottom {
    background: #0f0f0f;
    padding: 20px 0;
    margin-top: 30px;
}

.copyright {
    margin: 0;
    font-size: 14px;
    color: #999;
}

.footer-bottom-links {
    text-align: left;
}

.footer-bottom-links a {
    color: #999;
    font-size: 14px;
    margin-left: 20px;
}

.footer-bottom-links a:hover {
    color: var(--primary-color);
}

/* ========================================
   Scroll to Top
======================================== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(255, 20, 147, 0.4);
    transition: all 0.3s ease;
    z-index: 999;
}

.scroll-top:hover {
    background: var(--secondary-color);
    transform: translateY(-5px);
}

.scroll-top.show {
    display: flex;
}

/* ========================================
   Home Slider
======================================== */
#mainSlider {
    margin-bottom: 50px;
}

.carousel-item {
    height: 500px;
    position: relative;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-caption {
    top: 50%;
    transform: translateY(-50%);
    bottom: auto;
    text-align: right;
}

.slider-title {
    font-size: 48px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
}

.slider-subtitle {
    font-size: 20px;
    color: #fff;
    margin-bottom: 30px;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.3);
}

.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    height: 60px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    opacity: 0.8;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(1);
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--primary-color);
}

/* ========================================
   Section Header
======================================== */
.section-header {
    margin-bottom: 40px;
}

.section-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 3px;
}

.section-subtitle {
    font-size: 16px;
    color: #666;
    margin-top: 15px;
}

/* ========================================
   Category Card
======================================== */
.category-card {
    display: block;
    text-align: center;
    padding: 30px 15px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.category-card img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 15px;
}

.category-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    color: #fff;
    font-size: 32px;
}

.category-card h5 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-color);
    margin: 0;
}

.category-card:hover h5 {
    color: var(--primary-color);
}

/* ========================================
   Banner Section
======================================== */
.banner-item {
    display: block;
    overflow: hidden;
    border-radius: 12px;
    position: relative;
}

.banner-item img {
    transition: transform 0.5s ease;
}

.banner-item:hover img {
    transform: scale(1.05);
}

/* ========================================
   Features Section
======================================== */
.feature-box {
    padding: 30px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.feature-box i {
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.feature-box:hover i {
    transform: scale(1.1);
}

.feature-box h5 {
    font-weight: 700;
    margin-bottom: 10px;
}

.feature-box p {
    color: #666;
    margin: 0;
    font-size: 14px;
}

/* ========================================
   Notification
======================================== */
.notification {
    position: fixed;
    top: 80px;
    right: 20px;
    padding: 15px 25px;
    border-radius: 8px;
    color: #fff;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    z-index: 9999;
    opacity: 0;
    transform: translateX(400px);
    transition: all 0.3s ease;
}

.notification.show {
    opacity: 1;
    transform: translateX(0);
}

.notification i {
    margin-left: 8px;
}

/* ========================================
   Breadcrumb
======================================== */
.breadcrumb-section {
    border-bottom: 1px solid #f0f0f0;
}

.breadcrumb {
    background: transparent;
    margin: 0;
    padding: 0;
}

.breadcrumb-item a {
    color: #666;
}

.breadcrumb-item.active {
    color: var(--primary-color);
}

/* ========================================
   Category Header
======================================== */
.category-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 10px;
}

.category-description {
    color: #666;
    font-size: 16px;
    margin: 0;
}

.products-count {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
}

/* ========================================
   Subcategories
======================================== */
.subcategories-list {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.subcategory-item {
    display: inline-block;
    padding: 8px 20px;
    background: #fff;
    border: 2px solid #f0f0f0;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.subcategory-item:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
    transform: translateY(-2px);
}

/* ========================================
   Brand Slider
======================================== */
.brand-slider-section {
    background: #f8f9fa;
    border-top: 1px solid #e9ecef;
    border-bottom: 1px solid #e9ecef;
}

.brand-slider-wrapper {
    position: relative;
    overflow: hidden;
}

.brand-slider {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.brand-slider::-webkit-scrollbar {
    display: none;
}

.brand-slide {
    flex: 0 0 auto;
}

.brand-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 80px;
    background: #fff;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.brand-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.brand-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.brand-logo:hover img {
    filter: grayscale(0%);
}

.brand-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-color);
    text-align: center;
}

/* ========================================
   Filter Sidebar
======================================== */
.filter-sidebar {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    position: sticky;
    top: 100px;
}

.filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.filter-header h5 {
    font-size: 20px;
    font-weight: 800;
    color: var(--text-color);
    margin: 0;
}

.btn-clear-filters {
    background: transparent;
    border: none;
    color: var(--primary-color);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-clear-filters:hover {
    opacity: 0.7;
}

.filter-group {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #f0f0f0;
}

.filter-group:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.filter-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 15px;
}

.filter-options {
    max-height: 200px;
    overflow-y: auto;
}

.filter-options::-webkit-scrollbar {
    width: 4px;
}

.filter-options::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 4px;
}

.filter-options::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

.form-check {
    margin-bottom: 12px;
}

.form-check-input {
    cursor: pointer;
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.form-check-label {
    cursor: pointer;
    font-size: 14px;
    color: #666;
}

.price-filter input {
    font-size: 14px;
}

.price-range-info {
    text-align: center;
}

/* ========================================
   Products Toolbar
======================================== */
.products-toolbar {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.sort-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: flex-start;
}

.sort-wrapper label {
    font-weight: 600;
    margin: 0;
    white-space: nowrap;
}

.sort-wrapper .form-select {
    width: auto;
    min-width: 200px;
    font-size: 14px;
}

/* ========================================
   Responsive - Category Page
======================================== */
@media (max-width: 991px) {
    .filter-sidebar {
        position: static;
        margin-bottom: 30px;
    }
    
    .brand-slider {
        justify-content: flex-start;
    }
    
    .sort-wrapper {
        margin-top: 15px;
    }
}

@media (max-width: 767px) {
    .category-title {
        font-size: 24px;
    }
    
    .products-count {
        font-size: 14px;
        display: block;
        margin-top: 10px;
    }
    
    .subcategory-item {
        font-size: 12px;
        padding: 6px 15px;
    }
    
    .brand-logo {
        width: 100px;
        height: 70px;
    }
    
    .sort-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .sort-wrapper .form-select {
        width: 100%;
    }
}

/* ========================================
   Product Details Page
======================================== */
.product-gallery {
    position: sticky;
    top: 100px;
}

.main-image-wrapper {
    position: relative;
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    overflow: hidden;
}

.main-image-wrapper img {
    width: 100%;
    height: auto;
}

.discount-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #dc3545;
    color: #fff;
    padding: 8px 15px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 16px;
}

.product-gallery-thumbs {
    margin-top: 15px;
}

.gallery-thumb {
    cursor: pointer;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.gallery-thumb:hover,
.gallery-thumb.active {
    border-color: var(--primary-color);
}

.gallery-thumb img {
    width: 100%;
    height: auto;
}

.product-info {
    padding: 20px;
}

.product-brand {
    font-size: 14px;
}

.product-brand a {
    color: var(--primary-color);
    font-weight: 600;
}

.product-name {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 15px;
    line-height: 1.3;
}

.product-sku {
    color: #999;
    font-size: 14px;
}

.product-price-section {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.price-main {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-color);
}

.price-original {
    font-size: 20px;
    color: #999;
    text-decoration: line-through;
}

.save-amount {
    background: #28a745;
    color: #fff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.product-short-desc {
    color: #666;
    line-height: 1.8;
}

.product-size-info {
    color: #666;
}

.stock-status {
    font-weight: 600;
    font-size: 15px;
}

.stock-status.in-stock {
    color: #28a745;
}

.stock-status.out-of-stock {
    color: #dc3545;
}

.stock-warning {
    color: #ff6b6b;
    font-size: 13px;
    margin-right: 10px;
    font-weight: 600;
}

.quantity-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
}

.quantity-wrapper label {
    font-weight: 600;
    margin: 0;
}

.quantity-control {
    display: flex;
    align-items: center;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}

.quantity-btn {
    width: 40px;
    height: 40px;
    border: none;
    background: #f8f9fa;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity-btn:hover {
    background: var(--primary-color);
    color: #fff;
}

.quantity-input {
    width: 60px;
    height: 40px;
    border: none;
    text-align: center;
    font-weight: 600;
    font-size: 16px;
}

.quantity-input::-webkit-inner-spin-button,
.quantity-input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.action-buttons {
    display: flex;
    gap: 10px;
}

.btn-add-to-cart {
    flex: 1;
    padding: 15px 30px;
    font-size: 16px;
}

.product-payment-info h6 {
    font-weight: 700;
    margin-bottom: 15px;
}

.payment-methods-product {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.payment-methods-product img {
    height: 30px;
    filter: grayscale(50%);
    transition: all 0.3s ease;
}

.payment-methods-product img:hover {
    filter: grayscale(0%);
}

.installment-info {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 10px;
}

.installment-info img {
    height: 25px;
}

.installment-info span {
    font-size: 13px;
    color: #666;
}

.product-share {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.share-buttons {
    display: flex;
    gap: 10px;
}

.share-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 18px;
    color: #fff;
    transition: all 0.3s ease;
}

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.share-btn.whatsapp {
    background: #25d366;
}

.share-btn.twitter {
    background: #1da1f2;
}

.share-btn.facebook {
    background: #1877f2;
}

.product-description-section {
    border-top: 2px solid #f0f0f0;
    padding-top: 40px;
}

.product-description-section h3 {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 20px;
}

.description-content {
    color: #666;
    line-height: 1.9;
    font-size: 15px;
}

/* ========================================
   Responsive - Product Page
======================================== */
@media (max-width: 991px) {
    .product-gallery {
        position: static;
        margin-bottom: 40px;
    }
    
    .product-name {
        font-size: 24px;
    }
    
    .price-main {
        font-size: 28px;
    }
}

@media (max-width: 767px) {
    .product-name {
        font-size: 20px;
    }
    
    .price-main {
        font-size: 24px;
    }
    
    .action-buttons {
        flex-direction: column;
    }
    
    .btn-add-to-cart {
        width: 100%;
    }
}

/* ========================================
   Cart Page
======================================== */
.cart-table-wrapper {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

.cart-table {
    margin: 0;
}

.cart-table thead {
    background: #f8f9fa;
}

.cart-table thead th {
    font-weight: 700;
    color: var(--text-color);
    border: none;
    padding: 15px;
}

.cart-table tbody td {
    vertical-align: middle;
    padding: 20px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.cart-product-info {
    display: flex;
    gap: 15px;
    align-items: center;
}

.cart-product-info img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
}

.product-details {
    flex: 1;
}

.product-details .product-name {
    font-weight: 600;
    color: var(--text-color);
    font-size: 15px;
    display: block;
    margin-bottom: 5px;
}

.product-details .product-name:hover {
    color: var(--primary-color);
}

.product-details small {
    display: block;
    margin-bottom: 3px;
}

.cart-price {
    font-weight: 700;
    font-size: 18px;
    color: var(--primary-color);
}

.quantity-control-cart {
    display: flex;
    align-items: center;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    width: fit-content;
}

.quantity-control-cart .quantity-btn {
    width: 35px;
    height: 35px;
    border: none;
    background: #f8f9fa;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity-control-cart .quantity-btn:hover {
    background: var(--primary-color);
    color: #fff;
}

.quantity-control-cart .cart-quantity {
    width: 50px;
    height: 35px;
    border: none;
    text-align: center;
    font-weight: 600;
}

.cart-quantity::-webkit-inner-spin-button,
.cart-quantity::-webkit-outer-spin-button {
    -webkit-appearance: none;
}

.item-total {
    font-weight: 700;
    font-size: 18px;
    color: var(--text-color);
}

.btn-remove-cart {
    background: transparent;
    border: none;
    color: #dc3545;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-remove-cart:hover {
    color: #c82333;
    transform: scale(1.2);
}

.cart-summary {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    position: sticky;
    top: 100px;
}

.cart-summary h4 {
    font-weight: 800;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 15px;
    color: #666;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    padding-top: 20px;
    margin-top: 20px;
    border-top: 2px solid #f0f0f0;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-color);
}

.summary-total span:last-child {
    color: var(--primary-color);
}

.btn-checkout {
    margin-top: 25px;
    padding: 15px;
    font-size: 16px;
}

.empty-cart {
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.empty-cart i {
    opacity: 0.3;
}

.empty-cart h3 {
    font-weight: 700;
    margin-bottom: 10px;
}

/* ========================================
   Responsive - Cart Page
======================================== */
@media (max-width: 991px) {
    .cart-summary {
        position: static;
        margin-top: 30px;
    }
}

@media (max-width: 767px) {
    .cart-table-wrapper {
        padding: 15px;
        overflow-x: auto;
    }
    
    .cart-table {
        min-width: 600px;
    }
    
    .cart-product-info {
        min-width: 200px;
    }
    
    .cart-product-info img {
        width: 60px;
        height: 60px;
    }
}

/* ========================================
   Checkout Page
======================================== */
.checkout-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

.checkout-card-title {
    font-weight: 800;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.form-label {
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 8px;
}

.form-control,
.form-select {
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(255, 20, 147, 0.15);
}

.payment-methods-checkout {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.payment-method-item {
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
}

.payment-method-item:hover {
    border-color: var(--primary-color);
    background: rgba(255, 20, 147, 0.05);
}

.payment-method-item input[type="radio"] {
    display: none;
}

.payment-method-item input[type="radio"]:checked + .payment-method-content {
    border-color: var(--primary-color);
}

.payment-method-item input[type="radio"]:checked ~ .payment-method-content::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 10px;
    left: 10px;
    width: 25px;
    height: 25px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.payment-method-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
    position: relative;
}

.payment-method-content img {
    height: 30px;
    object-fit: contain;
}

.payment-method-content i {
    color: var(--primary-color);
}

.payment-method-content span {
    font-weight: 600;
    font-size: 13px;
    color: var(--text-color);
}

.order-summary-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    position: sticky;
    top: 100px;
}

.order-summary-card h4 {
    font-weight: 800;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.order-items {
    margin-bottom: 25px;
}

.order-item {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
}

.order-item:last-child {
    border-bottom: none;
}

.order-item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
}

.order-item-details {
    flex: 1;
}

.order-item-name {
    font-weight: 600;
    font-size: 14px;
    color: var(--text-color);
    margin-bottom: 5px;
}

.order-item-qty {
    font-size: 13px;
    color: #999;
}

.order-item-price {
    font-weight: 700;
    color: var(--primary-color);
    white-space: nowrap;
}

.order-totals {
    padding-top: 20px;
    border-top: 2px solid #f0f0f0;
}

.order-total-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 15px;
    color: #666;
}

.order-total-final {
    display: flex;
    justify-content: space-between;
    padding-top: 20px;
    margin-top: 15px;
    border-top: 2px solid #f0f0f0;
    font-size: 20px;
    font-weight: 700;
}

.order-total-final span:last-child {
    color: var(--primary-color);
}

.btn-place-order {
    margin-top: 25px;
    padding: 15px;
    font-size: 16px;
}

.secure-checkout-info {
    text-align: center;
    color: #28a745;
}

.secure-checkout-info i {
    margin-left: 5px;
}

/* ========================================
   Responsive - Checkout Page
======================================== */
@media (max-width: 991px) {
    .order-summary-card {
        position: static;
        margin-top: 30px;
    }
}

@media (max-width: 767px) {
    .payment-methods-checkout {
        grid-template-columns: 1fr;
    }
    
    .checkout-card {
        padding: 20px;
    }
}

/* ========================================
   Responsive
======================================== */
@media (max-width: 991px) {
    .navbar-nav {
        margin-top: 20px;
        padding-top: 20px;
        border-top: 1px solid #f0f0f0;
    }
    
    .search-form {
        min-width: 100%;
        margin-bottom: 15px;
    }
    
    .navbar-icons {
        justify-content: flex-start;
        margin-top: 15px;
    }
    
    .top-bar-left {
        text-align: right;
        margin-top: 10px;
    }
}

@media (max-width: 767px) {
    .product-card-title {
        font-size: 14px;
    }
    
    .price-current {
        font-size: 18px;
    }
    
    .footer-widget {
        margin-bottom: 30px;
    }
    
    .footer-bottom-links {
        text-align: right;
        margin-top: 10px;
    }
}