
/* Modern Product Card Styles - Fixed Version */
.cardProductModern {
    position: relative;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    margin-bottom: 30px;
    overflow: hidden;
    text-align: center;
}
.cardProductModern:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}
.cardProductModern .cardImage {
    position: relative;
    overflow: hidden;
    border-radius: 16px 16px 0 0;
    background: #ffffff;
    height: 280px;
    margin-bottom: 0;
}
.cardProductModern .cardImage a {
    display: block;
    height: 100%;
    position: relative;
}
.cardProductModern .cardImage img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
    transition: all 0.4s ease;
}
.cardProductModern .cardImage .imageMain {
    opacity: 1;
    visibility: visible;
    transition: all 0.4s ease;
}
.cardProductModern .cardImage .imageHover {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    width: calc(100% - 40px);
    height: calc(100% - 40px);
    padding: 0;
}
.cardProductModern .cardImage .button-select {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 20px 0 15px;
    transform: translateY(100%);
    transition: all 0.3s ease;
    z-index: 3;
}
.cardProductModern .cardImage .button-select a {
    background: #ffffff;
    color: #1a1a1a;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}
.cardProductModern .cardImage .button-select a:hover {
    background: #1a1a1a;
    color: #ffffff;
    transform: translateY(-2px);
}
.cardProductModern .cardImage .box-quick-button {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.3s ease;
    z-index: 3;
}
.cardProductModern .cardImage .box-quick-button .btn {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    text-decoration: none;
}
.cardProductModern .cardImage .box-quick-button .btn:hover {
    background: #1a1a1a;
    transform: scale(1.1);
}
.cardProductModern .cardImage .box-quick-button .btn:hover svg path {
    fill: #ffffff;
}
.cardProductModern .cardImage .box-quick-button .btn svg {
    width: 20px;
    height: 20px;
}
.cardProductModern .cardImage .box-quick-button .btn svg path {
    fill: #1a1a1a;
    transition: all 0.3s ease;
}
.cardProductModern .cardImage:hover .imageMain {
    opacity: 0;
    visibility: hidden;
    transform: scale(1.05);
}
.cardProductModern .cardImage:hover .imageHover {
    opacity: 1;
    visibility: visible;
}
.cardProductModern .cardImage:hover .button-select {
    transform: translateY(0);
}
.cardProductModern .cardImage:hover .box-quick-button {
    opacity: 1;
    transform: translateX(0);
}
.cardProductModern .cardInfo {
    padding: 20px;
    text-align: left;
    position: relative;
}
.cardProductModern .cardInfo h6 {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
    line-height: 1.4;
    transition: color 0.3s ease;
}
.cardProductModern .cardInfo a:hover h6 {
    color: #007bff;
}
.cardProductModern .cardInfo .cardDesc {
    margin: 0;
}
.cardProductModern .cardInfo .cardDesc .price-line {
    color: #6c757d;
    text-decoration: line-through;
    font-size: 14px;
    margin-right: 8px;
}
.cardProductModern .cardInfo .cardDesc .price-main {
    color: #1a1a1a;
    font-weight: 700;
    font-size: 18px;
}
.cardProductModern .cardInfo .product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
/* Enhanced Home Page Banners and Offers */
.icon-box-type1 {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 20px;
    padding: 40px 20px;
    margin-bottom: 40px;
}
.box-icon-type-1 {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}
.box-icon-type-1::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}
.box-icon-type-1:hover::before {
    left: 100%;
}
.box-icon-type-1:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(0, 123, 255, 0.2);
}
.box-icon-type-1 .item-image {
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}
.box-icon-type-1 .item-image img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    transition: transform 0.3s ease;
}
.box-icon-type-1:hover .item-image img {
    transform: scale(1.1);
}
.box-icon-type-1 .item-info {
    position: relative;
    z-index: 2;
}
.box-icon-type-1 .item-info .text-18 {
    font-weight: 600;
    color: #2c3e50;
    font-size: 16px;
    margin: 0;
}
/* Enhanced Main Banner */
.banner-home-16 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    padding: 60px 40px;
    color: white;
    position: relative;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    align-items: center;
}
.banner-home-16::before {
    content: '';
    position: absolute;
    top: 0;
    right: -50%;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    animation: float 20s infinite linear;
}
@keyframes float {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(-50px) translateY(-50px); }
}
.banner-home-16-inner {
    position: relative;
    z-index: 2;
    max-width: 500px;
}
.banner-home-16-inner h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.banner-home-16-inner .body-p1 {
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.6;
}
.banner-home-16-inner .btn {
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}
.banner-home-16-inner .btn:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}
/* Enhanced Offers Cards */
.home-offer-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}
.home-offer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    transition: height 0.3s ease;
}
.home-offer-card:hover::before {
    height: 8px;
}
.home-offer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}
.home-offer-card .offer-content {
    flex: 1;
    padding-right: 20px;
}
.home-offer-card .offer-message {
    color: #6c757d;
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.home-offer-card .offer-title {
    color: #2c3e50;
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 20px;
    line-height: 1.3;
}
.home-offer-card .offer-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.85rem;
}
.home-offer-card .offer-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    color: white;
}
.home-offer-card .offer-image {
    width: 120px;
    height: 120px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}
.home-offer-card:hover .offer-image {
    transform: scale(1.05) rotate(2deg);
}
.home-offer-card .offer-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
/* Enhanced Swiper Pagination */
.swiper-pagination-banner .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    width: 12px;
    height: 12px;
    margin: 0 6px;
    transition: all 0.3s ease;
}
.swiper-pagination-banner .swiper-pagination-bullet-active {
    background: white;
    transform: scale(1.3);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}
/* Enhanced Category Cards */
.cardCategoryCircle {
    text-align: center;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}
.cardCategoryCircle:hover {
    transform: translateY(-8px);
}
.cardCategoryCircle .cardImage {
    background: #ffffff;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 3px solid transparent;
}
.cardCategoryCircle:hover .cardImage {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(102, 126, 234, 0.3);
    transform: scale(1.05);
}
.cardCategoryCircle .cardImage img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    transition: transform 0.3s ease;
}
.cardCategoryCircle:hover .cardImage img {
    transform: scale(1.1);
}
.cardCategoryCircle .cardInfo .text-17-medium {
    color: #2c3e50;
    font-weight: 600;
    margin: 0;
    transition: color 0.3s ease;
}
.cardCategoryCircle:hover .cardInfo .text-17-medium {
    color: #667eea;
}