/* Enhanced Limited Time Offer Styling */
.limited-time-offer-section {
    position: relative;
    margin: 40px 0;
    padding: 0;
    overflow: hidden;
}

.limited-offer-container {
    background: linear-gradient(135deg, #ff416c, #ff4b2b);
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(255, 71, 87, 0.4);
    overflow: hidden;
    position: relative;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.5s ease;
    animation: container-glow 3s infinite alternate;
}

@keyframes container-glow {
    0% {
        box-shadow: 0 15px 35px rgba(255, 71, 87, 0.4);
    }
    100% {
        box-shadow: 0 20px 45px rgba(255, 71, 87, 0.6);
    }
}

.limited-offer-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/pattern.png');
    opacity: 0.1;
    z-index: 1;
}

.limited-offer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.2) 100%);
    position: relative;
    z-index: 2;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
}

.limited-offer-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.limited-offer-title {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
}

.limited-offer-title h3 {
    color: white;
    font-size: 24px;
    margin: 0;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.limited-offer-title h3::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #fff, transparent);
    animation: shimmer-line 3s infinite;
}

@keyframes shimmer-line {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.limited-offer-icon {
    font-size: 28px;
    color: #fff;
    animation: flash-icon 1.5s infinite;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.8));
}

@keyframes flash-icon {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.2);
    }
}

.limited-offer-timer {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
}

.limited-offer-timer::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 30px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.5), transparent);
}

.limited-offer-timer-label {
    color: white;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    animation: pulse-text 2s infinite alternate;
}

@keyframes pulse-text {
    0% {
        opacity: 0.8;
    }
    100% {
        opacity: 1;
    }
}

.timer-display {
    display: flex;
    gap: 10px;
    perspective: 1000px;
}

.timer-unit {
    background: linear-gradient(145deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.2));
    color: white;
    border-radius: 8px;
    padding: 10px 12px;
    font-family: 'Courier New', monospace;
    font-weight: bold;
    font-size: 20px;
    min-width: 45px;
    text-align: center;
    position: relative;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2), inset 0 1px 1px rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform-style: preserve-3d;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timer-unit:hover {
    transform: translateZ(10px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.3), inset 0 1px 1px rgba(255, 255, 255, 0.2);
}

.timer-unit::after {
    content: attr(data-label);
    position: absolute;
    bottom: -22px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 11px;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.timer-unit.urgent {
    background: linear-gradient(145deg, rgba(255, 71, 87, 0.4), rgba(255, 71, 87, 0.2));
    animation: urgentPulse 1s infinite alternate;
    box-shadow: 0 0 20px rgba(255, 71, 87, 0.6), inset 0 1px 1px rgba(255, 255, 255, 0.2);
}

@keyframes urgentPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 20px rgba(255, 71, 87, 0.6), inset 0 1px 1px rgba(255, 255, 255, 0.2);
    }
    100% {
        transform: scale(1.05);
        box-shadow: 0 0 30px rgba(255, 71, 87, 0.8), inset 0 1px 1px rgba(255, 255, 255, 0.3);
    }
}

.limited-offer-content {
    padding: 30px;
    position: relative;
    z-index: 2;
    perspective: 1000px;
}

.limited-offer-products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
    animation: fade-in-up 0.8s ease-out;
}

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.limited-offer-product {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transform-style: preserve-3d;
}

.limited-offer-product::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    background-size: 200% 200%;
    animation: shine 3s infinite linear;
    z-index: 1;
    pointer-events: none;
}

@keyframes shine {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

.limited-offer-product:hover {
    transform: translateY(-10px) scale(1.02) rotateX(5deg);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2), 0 5px 15px rgba(255, 71, 87, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.limited-offer-product-img {
    height: 180px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.1);
    transform-style: preserve-3d;
}

.limited-offer-product-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.2));
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.limited-offer-product:hover .limited-offer-product-img::after {
    opacity: 1;
}

.limited-offer-product-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
    z-index: 2;
}

.limited-offer-product:hover .limited-offer-product-img img {
transform: scale(1.1) translateZ(20px);
}

.limited-offer-product-details {
    padding: 20px;
    color: white;
    animation: slide-in 0.5s ease-out;
    position: relative;
    z-index: 3;
    transform-style: preserve-3d;
}

@keyframes slide-in {
    0% {
        transform: translateY(20px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.limited-offer-product-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #ffffff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    transition: color 0.3s ease, transform 0.3s ease;
    transform-style: preserve-3d;
}

.limited-offer-product:hover .limited-offer-product-title {
    color: #fff;
    transform: translateZ(15px);
}

.limited-offer-product-price {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    transform-style: preserve-3d;
    transition: transform 0.3s ease;
}

.limited-offer-product:hover .limited-offer-product-price {
    transform: translateZ(10px);
}

.limited-offer-product-discount {
    font-size: 22px;
    font-weight: 800;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    position: relative;
    transition: color 0.3s ease, transform 0.3s ease;
}

.limited-offer-product:hover .limited-offer-product-discount {
    color: #ffcc00;
    transform: scale(1.05);
    animation: pulse-price 2s infinite alternate;
}

@keyframes pulse-price {
    0% {
        text-shadow: 0 0 5px rgba(255, 204, 0, 0.3);
    }
    100% {
        text-shadow: 0 0 15px rgba(255, 204, 0, 0.7);
    }
}

.limited-offer-product-original {
    font-size: 15px;
    text-decoration: line-through;
    opacity: 0.7;
    position: relative;
    transition: opacity 0.3s ease;
}

.limited-offer-product:hover .limited-offer-product-original {
    opacity: 0.9;
}

.limited-offer-product-savings {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #ffcc00, #ff9900);
    color: #000;
    font-weight: 800;
    padding: 6px 12px;
    border-radius: 30px;
    font-size: 13px;
    z-index: 3;
    box-shadow: 0 5px 15px rgba(255, 204, 0, 0.3);
    transform: rotate(5deg);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid rgba(255, 255, 255, 0.3);
    animation: float-badge 3s ease-in-out infinite;
}

@keyframes float-badge {
    0%, 100% {
        transform: rotate(5deg) translateY(0);
    }
    50% {
        transform: rotate(5deg) translateY(-5px);
    }
}

.limited-offer-product:hover .limited-offer-product-savings {
    transform: rotate(5deg) scale(1.1);
    box-shadow: 0 8px 20px rgba(255, 204, 0, 0.4);
}

.limited-offer-product-category {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 6px 12px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    z-index: 3;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.limited-offer-product:hover .limited-offer-product-category {
    background: rgba(0, 0, 0, 0.7);
    transform: translateZ(15px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.netflix-badge {
    background-color: #e50914;
    color: white;
}

.hotstar-badge {
    background-color: #1f80e0;
    color: white;
}

.prime-badge {
    background-color: #00a8e1;
    color: white;
}

.youtube-badge {
    background-color: #ff0000;
    color: white;
}

.limited-offer-product-action {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    transform-style: preserve-3d;
    transition: transform 0.3s ease;
    height: 42px;
}

.limited-offer-product:hover .limited-offer-product-action {
    transform: translateZ(15px);
}

.limited-offer-product-action button {
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
}

.limited-offer-cart-btn {
    background: linear-gradient(135deg, #ffffff, #f0f0f0);
    color: #ff416c;
    position: relative;
    overflow: hidden;
    flex: 3;
    padding: 0 15px;
    white-space: nowrap;
}

.limited-offer-cart-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    transition: 0.5s;
}

.limited-offer-cart-btn:hover {
    background: linear-gradient(135deg, #ffffff, #f5f5f5);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2), 0 2px 5px rgba(255, 65, 108, 0.2);
    color: #e50914;
}

.limited-offer-cart-btn:hover::before {
    left: 100%;
}

.limited-offer-whatsapp-btn {
    background: #25D366;
    color: white;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    flex: 1;
    padding: 0;
    min-width: 42px;
}

.limited-offer-whatsapp-btn:hover {
    background: #128C7E;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.limited-offer-product-action button:active {
    transform: translateY(1px);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.limited-offer-product-action button i {
    margin-right: 8px;
    font-size: 14px;
}

.limited-offer-whatsapp-btn i {
    margin-right: 0 !important;
    font-size: 16px;
}

.limited-offer-view-all {
    text-align: center;
    margin-top: 35px;
    perspective: 1000px;
}

.limited-offer-view-all a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.2));
    color: white;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2), inset 0 1px 1px rgba(255, 255, 255, 0.1);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
}

.limited-offer-view-all a::after {
    content: '→';
    margin-left: 8px;
    font-size: 20px;
    transition: transform 0.3s ease;
    display: inline-block;
}

.limited-offer-view-all a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.limited-offer-view-all a:hover {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3));
    transform: translateY(-5px) rotateX(10deg);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.3), inset 0 1px 1px rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.limited-offer-view-all a:hover::after {
    transform: translateX(5px);
}

.limited-offer-view-all a:hover::before {
    left: 100%;
}

.limited-offer-view-all a:active {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Animations */
@keyframes pulse {
    0% { opacity: 0.7; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
    100% { opacity: 0.7; transform: scale(1); }
}

@keyframes urgentPulse {
    0% { transform: scale(1); background-color: rgba(255, 0, 0, 0.3); }
    100% { transform: scale(1.05); background-color: rgba(255, 0, 0, 0.5); }
}

/* Responsive Design */
@media (max-width: 992px) {
    .limited-time-offer-section {
        margin: 30px 0;
    }
    
    .limited-offer-header {
        flex-direction: column;
        gap: 10px;
        padding: 15px;
    }
    
    .limited-offer-title h3 {
        font-size: 22px;
    }
    
    .limited-offer-icon {
        font-size: 24px;
    }
    
    .limited-offer-products {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        gap: 15px;
    }
    
    .limited-offer-product {
        border-radius: 12px;
    }
    
    .limited-offer-product-img {
        height: 160px;
    }
    
    .limited-offer-product-details {
        padding: 12px;
    }
    
    .limited-offer-product-title {
        font-size: 16px;
        margin-bottom: 8px;
    }
    
    .limited-offer-product-price {
        margin-bottom: 10px;
        gap: 10px;
    }
    
    .limited-offer-product-discount {
        font-size: 18px;
    }
    
    .limited-offer-product-original {
        font-size: 14px;
    }
    
    .limited-offer-product-savings {
        padding: 5px 10px;
        font-size: 12px;
    }
    
    .limited-offer-product-action button {
        font-size: 13px;
        padding: 8px 12px;
    }
    
    .limited-offer-view-all {
        margin-top: 25px;
    }
    
    .limited-offer-view-all a {
        padding: 12px 25px;
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .limited-time-offer-section {
        margin: 25px 0;
    }
    
    .limited-offer-container {
        border-radius: 12px;
    }
    
    .limited-offer-header {
        padding: 12px;
    }
    
    .limited-offer-title h3 {
        font-size: 20px;
        letter-spacing: 1px;
    }
    
    .limited-offer-icon {
        font-size: 20px;
    }
    
    .limited-offer-timer {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .limited-offer-timer-label {
        font-size: 14px;
    }
    
    .timer-unit {
        min-width: 35px;
        font-size: 16px;
        padding: 8px 10px;
    }
    
    .timer-unit::after {
        font-size: 10px;
        bottom: -20px;
    }
    
    .limited-offer-content {
        padding: 15px;
    }
    
    .limited-offer-products {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .limited-offer-product-img {
        height: 140px;
    }
    
    .limited-offer-product-details {
        padding: 10px;
    }
    
    .limited-offer-product-title {
        font-size: 15px;
        margin-bottom: 6px;
    }
    
    .limited-offer-product-discount {
        font-size: 16px;
    }
    
    .limited-offer-product-original {
        font-size: 12px;
    }
    
    .limited-offer-product-action {
        margin-top: 8px;
    }
    
    .limited-offer-product-action button {
        font-size: 12px;
        padding: 7px 10px;
    }
    
    .limited-offer-product-action button i {
        font-size: 12px;
    }
    
    .limited-offer-view-all {
        margin-top: 20px;
    }
    
    .limited-offer-view-all a {
        padding: 10px 20px;
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .limited-time-offer-section {
        margin: 20px 0;
    }
    
    .limited-offer-container {
        border-radius: 10px;
    }
    
    .limited-offer-header {
        padding: 10px;
    }
    
    .limited-offer-title {
        gap: 8px;
    }
    
    .limited-offer-title h3 {
        font-size: 18px;
    }
    
    .limited-offer-icon {
        font-size: 18px;
    }
    
    .timer-display {
        gap: 5px;
    }
    
    .timer-unit {
        min-width: 28px;
        font-size: 14px;
        padding: 6px 8px;
    }
    
    .timer-unit::after {
        font-size: 9px;
        bottom: -18px;
    }
    
    .limited-offer-content {
        padding: 12px;
    }
    
    .limited-offer-products {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .limited-offer-product {
        border-radius: 8px;
    }
    
    .limited-offer-product-img {
        height: 120px;
    }
    
    .limited-offer-product-details {
        padding: 8px;
    }
    
    .limited-offer-product-title {
        font-size: 14px;
        margin-bottom: 5px;
    }
    
    .limited-offer-product-price {
        gap: 8px;
        margin-bottom: 8px;
    }
    
    .limited-offer-product-discount {
        font-size: 15px;
    }
    
    .limited-offer-product-original {
        font-size: 11px;
    }
    
    .limited-offer-product-savings {
        padding: 3px 6px;
        font-size: 8px;
        top: 8px;
        right: 8px;
        border-radius: 3px;
    }
    
    .limited-offer-product-category {
        font-size: 8px;
        padding: 2px 6px;
        border-radius: 3px;
    }
    
    .limited-offer-product-action button {
        font-size: 11px;
        padding: 6px 8px;
    }
    
    .limited-offer-view-all a {
        padding: 8px 16px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .limited-offer-products {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .limited-offer-product-img {
        height: 110px;
    }
    
    .limited-offer-product-title {
        font-size: 13px;
    }
    
    .limited-offer-product-discount {
        font-size: 12px;
    }
    
    .limited-offer-product-original {
        font-size: 9px;
    }
    
    .limited-offer-product-savings {
        padding: 2px 5px;
        font-size: 7px;
        top: 5px;
        right: 5px;
    }
    
    .limited-offer-product-category {
        font-size: 7px;
        padding: 1px 4px;
    }
    
    .limited-offer-product-action {
        flex-direction: row;
        gap: 5px;
        justify-content: space-between;
    }
    
    .limited-offer-product-action button {
        padding: 5px 8px;
        font-size: 10px;
        text-align: center;
    }
    
    .limited-offer-cart-btn {
        flex: 5;
        width: 85%;
        background: linear-gradient(135deg, #ffffffce, #ffffff);
        color: rgb(255, 0, 0);
        font-weight: bold;
    }
    
    .limited-offer-whatsapp-btn {
        flex: 1;
        width: 15%;
        padding: 5px;
        background: #25D366;
        color: white;
    }
    
    .limited-offer-cart-btn span {
        display: none;
    }
    
    .limited-offer-cart-btn i {
        margin-right: 0;
    }
}

/* Dark Mode Adjustments */
body.dark-mode .limited-offer-container {
    box-shadow: 0 10px 30px rgba(255, 71, 87, 0.2);
}

body.dark-mode .limited-offer-product {
    background-color: rgba(30, 30, 30, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

body.dark-mode .limited-offer-product:hover {
    background-color: rgba(40, 40, 40, 0.5);
}

body.dark-mode .limited-offer-cart-btn {
    background-color: #2a2a2a;
    color: #ff416c;
}

body.dark-mode .limited-offer-cart-btn:hover {
    background-color: #333;
}

body.dark-mode .limited-offer-view-all a {
    background-color: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

body.dark-mode .limited-offer-view-all a:hover {
    background-color: rgba(0, 0, 0, 0.7);
}
