/* Product Cards Styling */

/* ========================================
   SHOP PAGE STYLING
   ======================================== */

/* Shop Page Wrapper */
.shop-page-wrapper {
    background-color: #f8f9fa;
    min-height: 100vh;
    padding-top: 0; /* Hero banner handles spacing */
}

/* Shop Content */
.shop-content {
    padding: 40px 0;
}

/* Shop Filters */
.shop-filters {
    background: white;
    /* border-radius: 10px; */
    padding: 25px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    position: sticky;
    top: 100px;
}

.filter-title {
    font-family: 'Oswald', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 25px;
    text-transform: uppercase;
    border-bottom: 2px solid var(--color-primary);
    padding-bottom: 10px;
}

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

.filter-group-title {
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #555;
    margin-bottom: 15px;
    text-transform: uppercase;
}

/* Price Range Slider */
.price-range-container {
    padding: 10px 0;
}

.price-range-slider {
    position: relative;
    height: 40px;
    margin-bottom: 15px;
}

.price-slider {
    position: absolute;
    width: 100%;
    height: 5px;
    background: #ddd;
    outline: none;
    /* border-radius: 5px; */
    -webkit-appearance: none;
    appearance: none;
}

.price-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    background: var(--color-primary);
    /* border-radius: 50%; */
    cursor: pointer;
    border: 2px solid white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.price-slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background: var(--color-primary);
    /* border-radius: 50%; */
    cursor: pointer;
    border: 2px solid white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.price-range-display {
    text-align: center;
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    color: var(--color-primary);
    font-size: 16px;
}

/* Category Filters */
.category-filters {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.filter-checkbox {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    color: #555;
    transition: color 0.3s ease;
    position: relative;
    padding-left: 30px;
}

.filter-checkbox:hover {
    color: var(--color-primary);
}

.filter-checkbox input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkmark {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 18px;
    width: 18px;
    background-color: #fff;
    border: 2px solid #ddd;
    /* border-radius: 3px; */
    transition: all 0.3s ease;
}

.filter-checkbox:hover .checkmark {
    border-color: var(--color-primary);
}

.filter-checkbox input:checked ~ .checkmark {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 5px;
    top: 2px;
    width: 4px;
    height: 8px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.filter-checkbox input:checked ~ .checkmark:after {
    display: block;
}

/* Filter Actions */
.filter-actions {
    display: flex;
    gap: 10px;
    margin-top: 25px;
}

.btn-apply-filters,
.btn-clear-filters {
    flex: 1;
    padding: 12px 20px;
    border: none;
    /* border-radius: 5px; */
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.btn-apply-filters:hover {
    background: #0056b3;
    transform: translateY(-2px);
}

.btn-clear-filters {
    background: #f8f9fa;
    color: #666;
    border: 1px solid #ddd;
}

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

/* Shop Products Section */
.shop-products {
    /* background: white; */
    /* border-radius: 10px; */
    /* padding: 25px; */
    /* box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1); */
}

/* Products Header */
.products-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.products-count {
    font-family: 'Raleway', sans-serif;
    color: #666;
    font-size: 14px;
}

.products-count strong {
    color: var(--color-primary);
    font-weight: 600;
}

.sort-dropdown {
    padding: 8px 15px;
    border: 1px solid #ddd;
    /* border-radius: 5px; */
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    background: white;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.sort-dropdown:focus {
    outline: none;
    border-color: var(--color-primary);
}

#products-grid [class^="col-"],
#products-grid [class*=" col-"] {
    padding-right: 0px;
    padding-left: 0px;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

/* Shop page product cards - use existing product-card styles */
.products-grid .product-card {
    margin: 0; /* Remove default margin for grid layout */
    width: 100%;
    max-width: none;
}

.product-card .the-button-purchase{
    padding: 9px 20px !important;
}

/* Shop Product Card */
.shop-product-card {
    background: white;
    /* border-radius: 10px; */
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.shop-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.product-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 220px;
    background: #f8f9fa;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.shop-product-card:hover .product-image {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.shop-product-card:hover .product-overlay {
    opacity: 1;
}

.btn-quick-view,
.btn-add-to-cart {
    padding: 10px 20px;
    border: none;
    /* border-radius: 5px; */
    font-family: 'Oswald', sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-add-to-cart.whatsapp{
    background-color: #28a745;
    color: #ffffff;
}

.btn-add-to-cart.whatsapp:hover{
    background-color: transparent;
    border: 2px solid #28a745;
    color: #28a745;
}
.btn-quick-view {
    background: white;
    color: #333;
}

.btn-quick-view:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
}

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

.btn-add-to-cart:hover {
    background: #0056b3;
    transform: translateY(-2px);
}

.product-info {
    padding: 20px;
}

.product-name {
    font-family: 'Oswald', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    text-transform: uppercase;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-description {
    font-family: 'Raleway', sans-serif;
    font-size: 12px;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-price {
    font-family: 'Oswald', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 10px;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 8px;
}

.stars {
    color: #ffc107;
    font-size: 14px;
}

.rating-count {
    font-family: 'Raleway', sans-serif;
    font-size: 12px;
    color: #999;
}

/* Shop Pagination */
.shop-pagination {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.page-numbers,
.pagination-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.pagination-btn,
.btn-page.prev,
.btn-page.next {
    padding: 10px 20px;
    border: 1px solid #ddd;
    background: white;
    color: #666;
    /* border-radius: 5px; */
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    width: unset;
}
.btn-page svg{
    width: 20px;
}
.pagination-btn:hover:not(:disabled),
.btn-page:hover:not(:disabled) {
    background: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
}
.btn-page:disabled,
.pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.pagination-numbers {
    display: flex;
    gap: 5px;
    align-items: center;
}
.btn-page,
.pagination-number {
    width: 40px;
    height: 40px;
    border: 1px solid #ddd;
    background: white;
    color: #666;
    /* border-radius: 5px; */
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagination-number:hover {
    background: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
}

.btn-page.current,
.pagination-number.active {
    background: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
}

.pagination-dots {
    color: #999;
    font-weight: bold;
    padding: 0 5px;
}

.pagination-info {
    text-align: center;
    font-family: 'Raleway', sans-serif;
    color: #666;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 992px) {
    .shop-content .row {
        flex-direction: column;
    }

    .shop-filters {
        position: static;
        margin-top: 30px;
        margin-bottom: 0;
    }

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

    .products-header {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }

    .sort-dropdown {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .shop-title {
        font-size: 36px;
    }

    .shop-subtitle {
        font-size: 16px;
    }

    .shop-header {
        padding: 40px 0;
    }

    .shop-content {
        padding: 20px 0;
    }

    .shop-filters,
    .shop-products {
        padding: 20px;
        margin: 0 15px;
    }

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

    .filter-actions {
        flex-direction: column;
    }

    .pagination-wrapper {
        flex-wrap: wrap;
        gap: 8px;
    }
    .btn-page,
    .pagination-btn {
        padding: 8px 15px;
        font-size: 12px;
    }

    .pagination-number {
        width: 35px;
        height: 35px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .shop-title {
        font-size: 28px;
    }

    .shop-filters,
    .shop-products {
        margin: 0 10px;
        padding: 15px;
    }

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

    .products-grid .product-card {
        max-width: 100%;
    }

    .pagination-numbers {
        flex-wrap: wrap;
        justify-content: center;
    }

    .pagination-btn {
        display: none;
    }
    .btn-page.prev ,
    .btn-page.next ,
    .pagination-btn.pagination-prev,
    .pagination-btn.pagination-next {
        display: flex;
    }
}

/* Filter Toggle for Mobile */
@media (max-width: 992px) {
    .filter-toggle {
        display: block;
        width: 100%;
        padding: 15px;
        background: var(--color-primary);
        color: white;
        border: none;
        /* border-radius: 5px; */
        font-family: 'Oswald', sans-serif;
        font-size: 16px;
        font-weight: 600;
        text-transform: uppercase;
        cursor: pointer;
        margin-bottom: 20px;
        transition: background 0.3s ease;
    }

    .filter-toggle:hover {
        background: #0056b3;
    }

    .filter-toggle i {
        margin-left: 10px;
        transition: transform 0.3s ease;
    }

    .filter-toggle.active i {
        transform: rotate(180deg);
    }

    .shop-filters {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        padding: 0 25px;
    }

    .shop-filters.active {
        max-height: 1000px;
        padding: 25px;
    }
}
.product-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

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

.product-image img {
    width: 100%;
    /* height: 100%; */
    object-fit: contain;
    transition: transform 0.5s ease;
}

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

.product-details {
    padding: 15px 15px 35px 15px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
    color: #343a40;
}

.product-description {
    font-family: 'Raleway', sans-serif;
    text-transform: uppercase;
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 15px;
    padding: 0;
    flex-grow: 1;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-price {
    font-family: 'Oswald', sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: var(--color-primary);
    margin-bottom: 15px;
}

.view-button {
    display: inline-block;
    background-color: var(--color-primary);
    color: white;
    padding: 8px 15px;
    /* border-radius: 3px; */
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    text-align: center;
    transition: background-color 0.3s ease;
}

.view-button:hover {
    background-color: #b00014;
    color: white;
    text-decoration: none;
}

/* Slick Carousel Adjustments for Product Cards */
.slick-slide-must-haves .slick-slide {
    padding: 10px;
}

.slick-slide-must-haves .slick-prev,
.slick-slide-must-haves .slick-next {
    z-index: 10;
}

.slick-slide-must-haves .slick-prev {
    left: -25px;
}

.slick-slide-must-haves .slick-next {
    right: -25px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .product-card {
        margin: 5px;
    }
    
    .product-image {
        height: 180px;
    }
    
    .product-name {
        font-size: 16px;
    }
    
    .product-description {
        font-size: 13px;
    }
    
    .product-price {
        font-size: 18px;
    }
}

/* ========================================
   PRODUCT DETAILS PAGE STYLING
   ======================================== */

/* Product Details Page Wrapper */
.product-details-page {
    background-color: #f8f9fa;
    min-height: 100vh;
}

/* Product Hero Section */
.product-hero {
    background: white;
    padding: 40px 0;
    /* margin-top: 70px; */
}

/* Product Gallery */
.product-gallery {
    position: sticky;
    top: 100px;
}

.main-product-image {
    position: relative;
    background: transparent;
    /* border-radius: 10px; */
    overflow: hidden;
    margin-bottom: 20px;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.main-product-image:hover img {
    transform: scale(1.05);
}

.product-badges {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 2;
}

.badge {
    display: inline-block;
    padding: 5px 12px;
    /* border-radius: 15px; */
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    margin-right: 8px;
    margin-bottom: 8px;
}

.badge-new {
    background: linear-gradient(45deg, #28a745, #20c997);
    color: white;
}

.badge-sale {
    background: linear-gradient(45deg, #dc3545, #fd7e14);
    color: white;
}

.image-zoom-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.main-product-image:hover .image-zoom-overlay {
    opacity: 1;
}

.image-zoom-overlay i {
    color: white;
    font-size: 24px;
}

/* Product Thumbnails */
.product-thumbnails {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 5px 0;
}

.thumbnail-item {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    /* border-radius: 8px; */
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.thumbnail-item.active {
    border-color: var(--color-primary, #007cba);
}

.thumbnail-item:hover {
    border-color: var(--color-primary, #007cba);
}

.thumbnail-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Product Information */
.product-info {
    padding-left: 30px;
}

.product-breadcrumb {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.product-breadcrumb a {
    color: #666;
    text-decoration: none;
}

.product-breadcrumb a:hover {
    color: var(--color-primary, #007cba);
    text-decoration: underline;
}

.product-title {
    font-family: 'Oswald', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    text-transform: uppercase;
    line-height: 1.2;
}

/* Product Rating */
.product-rating {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.stars {
    color: #ffc107;
    font-size: 18px;
}

.stars i {
    margin-right: 2px;
}

.rating-text {
    font-size: 14px;
    color: #666;
}

/* Product Price */
.product-price {
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.current-price {
    font-family: 'Oswald', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--color-primary, #007cba);
}

.original-price {
    font-size: 24px;
    color: #999;
    text-decoration: line-through;
}

.discount-percentage {
    background: linear-gradient(45deg, #dc3545, #fd7e14);
    color: white;
    padding: 5px 12px;
    /* border-radius: 15px; */
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

/* Product Short Description */
.product-short-description {
    margin-bottom: 25px;
    text-align: justify;
}

.product-short-description p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* Product Features */
.product-features {
    margin-bottom: 30px;
    padding: 20px;
    background: #f8f9fa;
    /* border-radius: 8px; */
    border-left: 4px solid var(--color-primary, #007cba);
}

.product-features h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.product-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 14px;
    color: #555;
}

.product-features li i {
    color: #28a745;
    font-size: 12px;
}

/* Product Top Attributes */
.product-top-attributes {
    margin-bottom: 30px;
    padding: 25px;
    background: #f8f9fa;
    /* border-radius: 8px; */
    border-left: 4px solid var(--color-primary, #007cba);
}

.product-top-attributes h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.attributes-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.attribute-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: white;
    /* border-radius: 8px; */
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.attribute-item:hover {
    border-color: var(--color-primary, #007cba);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.attribute-item i {
    font-size: 24px;
    color: var(--color-primary, #007cba);
    width: 30px;
    text-align: center;
    flex-shrink: 0;
}

.attribute-item div {
    display: flex;
    align-items: center;
    gap: 20px;
}

.attribute-item strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 3px;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
}

.attribute-item span {
    font-size: 13px;
    color: #666;
    line-height: 1.4;
}

/* Product Purchase Section */
.product-purchase-section {
    margin-top: 30px;
    padding: 25px;
    background: white;
    /* border-radius: 10px; */
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
}

/* Product Options */
.product-options {
    margin-bottom: 25px;
}

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

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

.option-group label {
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    display: block;
    text-transform: uppercase;
}

.product-select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    /* border-radius: 5px; */
    font-size: 14px;
    background: white;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.product-select:focus {
    outline: none;
    border-color: var(--color-primary, #007cba);
}

/* Quantity Selector */
.quantity-selector {
    display: flex;
    align-items: center;
    width: 100%;
    border: 2px solid #e9ecef;
    /* border-radius: 5px; */
    overflow: hidden;
    background: white;
}

.qty-btn {
    background: #f8f9fa;
    border: none;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    color: #333;
}

.qty-btn:hover {
    background: var(--color-primary, #007cba);
    color: white;
}

.qty-btn:disabled {
    background: #e9ecef;
    color: #999;
    cursor: not-allowed;
}

.qty-input {
    border: none;
    width: 100%;
    height: 45px;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    background: white;
    color: #333;
}

.qty-input:focus {
    outline: none;
}

/* Price Summary */
.price-summary {
    margin-bottom: 25px;
    padding: 20px;
    background: #f8f9fa;
    /* border-radius: 8px; */
    border-left: 4px solid var(--color-primary, #007cba);
}

.selected-price {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.selected-price .current-price {
    font-family: 'Oswald', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--color-primary, #007cba);
}

.selected-price .original-price {
    font-size: 20px;
    color: #999;
    text-decoration: line-through;
}

.selected-price .total-price {
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-left: auto;
    text-transform: uppercase;
}

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

.btn-add-to-cart {
    flex: 1;
    background: var(--color-primary, #007cba);
    color: white;
    border: none;
    padding: 15px 25px;
    /* border-radius: 5px; */
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-add-to-cart:hover {
    background: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn-add-to-cart:active {
    transform: translateY(0);
}

.btn-wishlist {
    width: 50px;
    height: 50px;
    border: 2px solid #e9ecef;
    background: white;
    /* border-radius: 5px; */
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #666;
}

.btn-wishlist:hover {
    border-color: #dc3545;
    color: #dc3545;
    transform: translateY(-2px);
}

.btn-wishlist.active {
    background: #dc3545;
    border-color: #dc3545;
    color: white;
}

.btn-buy-now {
    background: #28a745;
    color: white;
    border: none;
    padding: 15px 25px;
    /* border-radius: 5px; */
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-buy-now:hover {
    background: #218838;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Product Options */
.product-options {
    margin-bottom: 30px;
}

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

.option-group label {
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    display: block;
    text-transform: uppercase;
}

.product-select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    /* border-radius: 5px; */
    font-size: 14px;
    background: white;
    transition: border-color 0.3s ease;
}

.product-select:focus {
    outline: none;
    border-color: var(--color-primary, #007cba);
}

/* Quantity Selector */
.quantity-selector {
    display: flex;
    align-items: center;
    width: fit-content;
    border: 2px solid #e9ecef;
    /* border-radius: 5px; */
    overflow: hidden;
}

.qty-btn {
    background: #f8f9fa;
    border: none;
    width: 40px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease;
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.qty-btn:hover {
    background: var(--color-primary, #007cba);
    color: white;
}

.qty-input {
    border: none;
    width: 60px;
    height: 45px;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    background: white;
}

.qty-input:focus {
    outline: none;
}

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

.btn-add-to-cart {
    flex: 1;
    background: var(--color-primary, #007cba);
    color: white;
    border: none;
    padding: 15px 25px;
    /* border-radius: 5px; */
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-add-to-cart:hover {
    background: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn-wishlist,
.btn-compare {
    width: 50px;
    height: 50px;
    border: 2px solid #e9ecef;
    background: white;
    /* border-radius: 5px; */
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #666;
}

.btn-wishlist:hover,
.btn-compare:hover {
    border-color: var(--color-primary, #007cba);
    color: var(--color-primary, #007cba);
    transform: translateY(-2px);
}

.btn-wishlist.active {
    background: #dc3545;
    border-color: #dc3545;
    color: white;
}

/* Product Meta */
.product-meta {
    margin-bottom: 30px;
    padding: 20px;
    background: #f8f9fa;
    /* border-radius: 8px; */
}

.meta-item {
    display: flex;
    margin-bottom: 10px;
    font-size: 14px;
}

.meta-item:last-child {
    margin-bottom: 0;
}

.meta-label {
    font-weight: 600;
    color: #333;
    min-width: 100px;
    margin-right: 10px;
}

.meta-value {
    color: #555;
    flex: 1;
}

.meta-value a {
    color: var(--color-primary, #007cba);
    text-decoration: none;
}

.meta-value a:hover {
    text-decoration: underline;
}

.meta-value.in-stock {
    color: #28a745;
    font-weight: 500;
}

.meta-value.in-stock i {
    margin-right: 5px;
}

/* Product Guarantee */
.product-guarantee {
    border: 1px solid #e9ecef;
    /* border-radius: 8px; */
    padding: 20px;
    background: white;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.guarantee-item:last-child {
    margin-bottom: 0;
}

.guarantee-item i {
    font-size: 24px;
    color: var(--color-primary, #007cba);
    width: 30px;
    text-align: center;
}

.guarantee-item div strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 2px;
}

.guarantee-item div span {
    font-size: 12px;
    color: #666;
}

/* Product Details Tabs */
.product-details-tabs {
    background: white;
    padding: 60px 0;
}

.product-tabs-wrapper {
    background: white;
    /* border-radius: 10px; */
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

/* Tab Navigation */
.product-tabs-nav {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}

.product-tabs-nav .nav-item {
    flex: 1;
}

.product-tabs-nav .nav-link {
    display: block;
    padding: 20px 25px;
    text-align: center;
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    color: #666;
    text-decoration: none;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
    background: transparent;
    border-left: none;
    border-right: none;
    border-top: none;
}

.product-tabs-nav .nav-link:hover {
    color: var(--color-primary, #007cba);
    background: rgba(0, 124, 186, 0.05);
}

.product-tabs-nav .nav-item.active .nav-link{
    color: var(--color-primary, #007cba);
    background: white;
    border-bottom-color: var(--color-primary, #007cba);
}

/* Tab Content */
.tab-content {
    background: white;
}

.tab-pane {
    display: none;
    padding: 40px;
}

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

.tab-content-wrapper h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.tab-content-wrapper h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.tab-content-wrapper h5 {
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.tab-content-wrapper p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
}

/* Included Items */
.included-items {
    margin: 25px 0;
    padding: 25px;
    background: #f8f9fa;
    /* border-radius: 8px; */
}

.included-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.included-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    font-size: 14px;
    color: #555;
}

.included-list li i {
    color: #28a745;
    font-size: 12px;
}

/* Product Benefits */
.product-benefits {
    margin-top: 25px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px;
    background: white;
    /* border-radius: 8px; */
    border: 1px solid #e9ecef;
}

.benefit-item i {
    font-size: 24px;
    color: var(--color-primary, #007cba);
    margin-top: 5px;
}

.benefit-item h5 {
    margin: 0 0 5px 0;
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.benefit-item p {
    margin: 0;
    font-size: 14px;
    color: #666;
}

/* Specifications Table */
.specifications-table {
    margin-bottom: 30px;
}

.spec-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    /* border-radius: 8px; */
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.spec-table tr {
    border-bottom: 1px solid #e9ecef;
}

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

.spec-table tr:nth-child(even) {
    background: #f8f9fa;
}

.spec-table td {
    padding: 15px 20px;
    font-size: 14px;
}

.spec-label {
    font-weight: 600;
    color: #333;
    width: 40%;
}

.spec-value {
    color: #555;
}

/* Compatibility Info */
.compatibility-info {
    margin-top: 30px;
    padding: 25px;
    background: #f8f9fa;
    /* border-radius: 8px; */
}

.compatibility-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

.compatibility-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.compatibility-item i {
    font-size: 16px;
}

.text-success {
    color: #28a745;
}

.text-danger {
    color: #dc3545;
}

/* Reviews Section */
.reviews-summary {
    margin-bottom: 40px;
    padding: 30px;
    background: #f8f9fa;
    /* border-radius: 10px; */
}

.rating-overview {
    text-align: center;
}

.average-rating {
    font-size: 48px;
    font-weight: 700;
    color: var(--color-primary, #007cba);
    margin-bottom: 10px;
}

.rating-stars {
    font-size: 24px;
    color: #ffc107;
    margin-bottom: 10px;
}

.total-reviews {
    font-size: 14px;
    color: #666;
}

.rating-breakdown {
    padding-left: 30px;
}

.rating-bar {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 8px;
}

.rating-label {
    font-size: 14px;
    color: #333;
    min-width: 60px;
}

.bar-container {
    flex: 1;
    height: 8px;
    background: #e9ecef;
    /* border-radius: 4px; */
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #ffc107, #fd7e14);
    transition: width 0.3s ease;
}

.rating-count {
    font-size: 12px;
    color: #666;
    min-width: 30px;
    text-align: right;
}

/* Individual Reviews */
.reviews-list {
    margin-bottom: 40px;
}

.review-item {
    border: 1px solid #e9ecef;
    /* border-radius: 8px; */
    padding: 25px;
    margin-bottom: 20px;
    background: white;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.reviewer-info {
    display: flex;
    gap: 15px;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    /* border-radius: 50%; */
    overflow: hidden;
    flex-shrink: 0;
}

.reviewer-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reviewer-name {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 0 0 5px 0;
}

.review-rating {
    color: #ffc107;
    font-size: 14px;
    margin-bottom: 5px;
}

.review-date {
    font-size: 12px;
    color: #999;
}

.review-verified {
    font-size: 12px;
    color: #28a745;
    font-weight: 500;
}

.review-verified i {
    margin-right: 5px;
}

/* Review Content */
.review-content {
    margin-top: 15px;
    text-align: left;
}

.review-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.review-content p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}

.review-helpful {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 13px;
    color: #666;
}

.helpful-btn {
    background: none;
    border: 1px solid #e9ecef;
    padding: 5px 12px;
    /* border-radius: 15px; */
    font-size: 12px;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
}

.helpful-btn:hover {
    border-color: var(--color-primary, #007cba);
    color: var(--color-primary, #007cba);
}

.load-more-reviews {
    text-align: center;
    margin-top: 30px;
}

.btn-load-more {
    background: transparent;
    border: 2px solid var(--color-primary, #007cba);
    color: var(--color-primary, #007cba);
    padding: 12px 30px;
    /* border-radius: 5px; */
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-load-more:hover {
    background: var(--color-primary, #007cba);
    color: white;
}

/* Write Review Section */
.write-review-section {
    margin-top: 40px;
    padding: 30px;
    background: #f8f9fa;
    /* border-radius: 10px; */
}

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

.review-form label {
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    display: block;
}

.review-form .form-control {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    /* border-radius: 5px; */
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.review-form .form-control:focus {
    outline: none;
    border-color: var(--color-primary, #007cba);
}

/* Rating Input */
.rating-input {
    display: flex;
    flex-direction: row-reverse;
    gap: 5px;
    margin-top: 8px;
}

.rating-input input[type="radio"] {
    display: none;
}

.rating-input label {
    font-size: 24px;
    color: #ddd;
    cursor: pointer;
    transition: color 0.3s ease;
    margin: 0;
}

.rating-input label:hover,
.rating-input label:hover ~ label,
.rating-input input[type="radio"]:checked ~ label {
    color: #ffc107;
}

.btn-submit-review {
    background: var(--color-primary, #007cba);
    color: white;
    border: none;
    padding: 15px 30px;
    /* border-radius: 5px; */
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit-review:hover {
    background: #0056b3;
    transform: translateY(-2px);
}

/* Shipping Information */
.shipping-info {
    margin-bottom: 30px;
}

.shipping-option {
    padding: 20px;
    border: 1px solid #e9ecef;
    /* border-radius: 8px; */
    margin-bottom: 15px;
    background: white;
    transition: all 0.3s ease;
}

.shipping-option:hover {
    border-color: var(--color-primary, #007cba);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.shipping-option.featured {
    border-color: #28a745;
    background: #f8fff9;
}

.shipping-option h5 {
    margin-bottom: 8px;
    color: #333;
}

.shipping-option p {
    margin: 0;
    font-size: 14px;
    color: #555;
}

.shipping-features {
    list-style: none;
    padding: 0;
    margin: 15px 0 0 0;
}

.shipping-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    font-size: 14px;
    color: #555;
}

.shipping-features li i {
    color: var(--color-primary, #007cba);
    width: 16px;
}

/* Returns Information */
.returns-info {
    margin-bottom: 30px;
}

.return-policy {
    padding: 20px;
    background: #f8fff9;
    border: 1px solid #28a745;
    /* border-radius: 8px; */
    margin-bottom: 20px;
}

.return-policy h5 {
    color: #28a745;
    margin-bottom: 8px;
}

.return-steps {
    padding-left: 20px;
    margin: 15px 0;
}

.return-steps li {
    margin-bottom: 8px;
    font-size: 14px;
    color: #555;
}

.return-conditions {
    list-style: none;
    padding: 0;
    margin: 15px 0 0 0;
}

.return-conditions li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    font-size: 14px;
    color: #555;
}

.return-conditions li i.fa-check {
    color: #28a745;
}

.return-conditions li i.fa-times {
    color: #dc3545;
}

/* Contact Support */
.contact-support {
    margin-top: 40px;
}

.support-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: linear-gradient(135deg, var(--color-primary, #007cba), #0056b3);
    color: white;
    /* border-radius: 10px; */
}

.support-card i {
    font-size: 32px;
    opacity: 0.9;
}

.support-card h5 {
    margin: 0 0 8px 0;
    font-size: 18px;
    font-weight: 600;
}

.support-card p {
    margin: 0 0 10px 0;
    font-size: 14px;
    opacity: 0.9;
}

.support-contact {
    display: flex;
    gap: 20px;
    font-size: 13px;
}

.support-contact span {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Related Products Section */
.related-products {
    background: #f8f9fa;
    padding: 60px 0;
}

.section-title {
    font-family: 'Oswald', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #333;
    text-align: center;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.section-subtitle {
    text-align: center;
    color: #666;
    font-size: 16px;
    margin-bottom: 40px;
}

/* Product Quick Actions */
.product-quick-actions {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-quick-actions {
    opacity: 1;
}

.quick-view,
.add-to-wishlist {
    width: 35px;
    height: 35px;
    border: none;
    /* border-radius: 50%; */
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.quick-view:hover,
.add-to-wishlist:hover {
    background: var(--color-primary, #007cba);
    color: white;
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .product-info {
        padding-left: 20px;
    }

    .product-title {
        font-size: 28px;
    }

    .current-price {
        font-size: 32px;
    }
}

@media (max-width: 992px) {
    .product-hero {
        padding: 30px 0;
    }

    .product-info {
        padding-left: 0;
        margin-top: 30px;
    }

    .product-gallery {
        position: static;
    }

    .main-product-image {
        height: 400px;
    }

    .product-title {
        font-size: 24px;
    }

    .current-price {
        font-size: 28px;
    }

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

    .btn-wishlist,
    .btn-compare {
        width: 100%;
        height: 45px;
    }

    .product-tabs-nav {
        flex-direction: column;
    }

    .product-tabs-nav .nav-link {
        border-bottom: 1px solid #e9ecef;
        border-left: 3px solid transparent;
    }

    .product-tabs-nav .nav-link.active {
        border-bottom-color: #e9ecef;
        border-left-color: var(--color-primary, #007cba);
    }

    .tab-pane {
        padding: 30px 20px;
    }

    .rating-breakdown {
        padding-left: 0;
        margin-top: 20px;
    }

    .review-header {
        flex-direction: column;
        gap: 15px;
    }

    .support-card {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .support-contact {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 768px) {
    .product-hero {
        margin-top: 60px;
        padding: 20px 0;
    }

    .main-product-image {
        height: 300px;
    }

    .product-title {
        font-size: 20px;
    }

    .current-price {
        font-size: 24px;
    }

    .original-price {
        font-size: 18px;
    }

    .product-rating {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .product-price {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .product-actions {
        gap: 8px;
    }

    .btn-add-to-cart {
        padding: 12px 20px;
        font-size: 14px;
    }

    .guarantee-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .product-top-attributes {
        padding: 20px;
        margin-bottom: 25px;
    }

    .attribute-item {
        padding: 12px;
        gap: 12px;
    }

    .attribute-item i {
        font-size: 20px;
        width: 25px;
    }

    .attribute-item strong {
        font-size: 13px;
    }

    .attribute-item span {
        font-size: 12px;
    }

    .product-purchase-section {
        padding: 20px;
        margin-top: 25px;
    }

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

    .btn-add-to-cart,
    .btn-buy-now {
        width: 100%;
        padding: 12px 20px;
        font-size: 14px;
    }

    .btn-wishlist {
        width: 100%;
        height: 45px;
    }

    .selected-price {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .selected-price .total-price {
        margin-left: 0;
        margin-top: 10px;
    }

    .price-summary {
        padding: 15px;
        margin-bottom: 20px;
    }

    .selected-price .current-price {
        font-size: 24px;
    }

    .selected-price .original-price {
        font-size: 18px;
    }

    .product-tabs-nav .nav-link {
        padding: 15px 20px;
        font-size: 14px;
    }

    .tab-pane {
        padding: 20px 15px;
    }

    .average-rating {
        font-size: 36px;
    }

    .rating-stars {
        font-size: 20px;
    }

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

    .reviewer-info {
        flex-direction: column;
        gap: 10px;
    }

    .review-helpful {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .section-title {
        font-size: 24px;
    }

    .section-subtitle {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .product-thumbnails {
        justify-content: center;
    }

    .thumbnail-item {
        width: 60px;
        height: 60px;
    }

    .product-features,
    .product-meta,
    .product-guarantee {
        padding: 15px;
    }

    .guarantee-item i {
        font-size: 20px;
    }

    .product-tabs-nav .nav-link {
        padding: 12px 15px;
        font-size: 13px;
    }

    .tab-pane {
        padding: 15px 10px;
    }

    .spec-table td {
        padding: 10px 15px;
        font-size: 13px;
    }

    .spec-label {
        width: 50%;
    }

    .review-item {
        padding: 15px;
    }

    .reviewer-avatar {
        width: 40px;
        height: 40px;
    }

    .shipping-option,
    .return-policy {
        padding: 15px;
    }

    .support-card {
        padding: 20px;
    }
}

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

/* Floating Add to Cart Button */
.product-card {
    position: relative;
}

.product-card .product-image {
    position: relative;
    overflow: hidden;
}

.floating-add-to-cart {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    background: #ffffff;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
    /* border-radius: 50%; */
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 124, 186, 0.3);
    opacity: 0;
    transform: translateY(-10px);
}

.floating-add-to-cart:hover {
    background: var(--color-primary);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 124, 186, 0.4);
}

.floating-add-to-cart:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(0, 124, 186, 0.3);
}

.floating-add-to-cart:disabled {
    background: #ccc;
    color: #666;
    cursor: not-allowed;
    box-shadow: 0 2px 8px rgba(204, 204, 204, 0.3);
}

.floating-add-to-cart:disabled:hover {
    background: #ccc;
    transform: translateY(-10px);
    box-shadow: 0 2px 8px rgba(204, 204, 204, 0.3);
}

/* Show button on card hover */
.product-card:hover .floating-add-to-cart {
    opacity: 1;
    transform: translateY(0);
}

/* Loading state */
.floating-add-to-cart.loading {
    background: #28a745;
    pointer-events: none;
}

.floating-add-to-cart.loading i {
    animation: spin 1s linear infinite;
}

/* Success state */
.floating-add-to-cart.success {
    background: #28a745;
    animation: successPulse 0.6s ease;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes successPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .floating-add-to-cart {
        width: 35px;
        height: 35px;
        font-size: 14px;
        top: 8px;
        right: 8px;
    }
}

/* Always show on mobile for better UX */
@media (max-width: 576px) {
    .floating-add-to-cart {
        opacity: 1;
        transform: translateY(0);
    }
}