
/* 5 columns on LG and above (992px+) */
@media (min-width: 992px) {
    .col-lg-5col, .col-xl-5col {
        flex: 0 0 20%;
        max-width: 20%;
    }
}

/* Testimonial Card */
.testimonial-card {
    height: 100%;
    transition: all 0.3s ease;
}

.testimonial-card-inner {
    background: #ffffff;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    margin: 10px;
}

.testimonial-card-inner:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    border-color: #e0e0e0;
}

/* Avatar Styles */
.testimonial-avatar {
    width: 55px;
    height: 55px;
    flex-shrink: 0;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.avatar-placeholder {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 600;
    color: white;
}

/* Stars & Verified Badge */
.testimonial-stars {
    display: flex;
    align-items: center;
    gap: 3px;
}

.verified {
    font-size: 11px;
    color: #10b981;
    margin-left: 8px;
}

.verified i {
    font-size: 10px;
    margin-right: 2px;
}

/* Testimonial Text */
.testimonial-text {
    min-height: 80px;
}

.testimonial-text p {
    font-size: 15px;
    line-height: 1.6;
    font-style: italic;
}

/* Footer */
.testimonial-footer {
    border-top: 1px solid #f0f0f0;
}

/* Slick Slider Custom Styles */
.testimonial-slider {
    margin: 0 -10px;
}

.testimonial-item {
    padding: 0 10px;
}

/* Hide default arrows */
.slick-prev, .slick-next {
    display: none !important;
}

/* Custom Dots */
.slick-dots {
    bottom: -40px;
    text-align: center;
    padding: 0;
    margin: 0;
    list-style: none;
    position: static;
    width: 100%;
}

.slick-dots li {
    display: inline-block;
    margin: 0 6px;
}

.slick-dots li button {
    font-size: 0;
    width: 10px;
    height: 10px;
    background: #ddd;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s;
}

.slick-dots li.slick-active button {
    background: #667eea;
    width: 12px;
    height: 12px;
}

.slick-dots li button:hover {
    background: #667eea;
}

/* Responsive */
@media (max-width: 768px) {
    .testimonial-card-inner {
        padding: 20px;
    }
    .testimonial-avatar {
        width: 45px;
        height: 45px;
    }
    .avatar-placeholder {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    .testimonial-text {
        min-height: auto;
    }
    .testimonial-text p {
        font-size: 14px;
    }
    .slick-dots li {
        margin: 0 4px;
    }
    .slick-dots li button {
        width: 8px;
        height: 8px;
    }
    .slick-dots li.slick-active button {
        width: 10px;
        height: 10px;
    }
}

/* Base Policy Styles (applies to all policies) */
.policy-page {
    padding: 60px 0;
    background: #f8f9fa;
    min-height: 60vh;
}

.policy-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.05);
    padding: 40px;
}

.policy-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.policy-subtitle {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 30px 0 15px;
    color: #333;
    border-left: 4px solid #667eea;
    padding-left: 15px;
}

.policy-content {
    color: #555;
    line-height: 1.8;
    margin-bottom: 25px;
}

.policy-list {
    list-style: none;
    padding-left: 0;
}

.policy-list li {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.policy-list li:before {
    content: "✓";
    color: #667eea;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.last-updated {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    color: #999;
    font-size: 14px;
}

.back-to-home {
    display: inline-block;
    margin-top: 20px;
    color: #667eea;
    text-decoration: none;
}

.back-to-home:hover {
    text-decoration: underline;
}

/* Breadcrumb (only used in privacy policy) */
.breadcrumb-custom {
    background: transparent;
    padding: 0;
    margin-bottom: 20px;
}

.breadcrumb-custom .breadcrumb-item a {
    color: #667eea;
    text-decoration: none;
}

.breadcrumb-custom .breadcrumb-item.active {
    color: #764ba2;
}

/* Shipping Policy Specific */
.shipping-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.shipping-table th, .shipping-table td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: left;
}

.shipping-table th {
    background: #f8f9fa;
    font-weight: 600;
}

/* Return Policy Specific */
.return-steps {
    counter-reset: step;
    list-style: none;
    padding: 0;
}

.return-steps li {
    counter-increment: step;
    margin-bottom: 20px;
    padding-left: 50px;
    position: relative;
}

.return-steps li:before {
    content: counter(step);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 0;
    top: 0;
    font-weight: bold;
}
.whatsapp-btn {
    bottom: 50px;
    left: 20px;
    background: #25D366;
}
.floating-btn {
    position: fixed;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
    z-index: 9999;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}
.whatsappImg {
    max-width: 100%;
    height: auto;
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .7s;
    transition-property: all;
}
/* Footer background */
.footer {
    background: #1a1b28 !important;
}
.footer__menu {
    color:#fff;
}

/* Default text color */
.footer a,
.footer__text p,
.footer__widget h4 {
    color: #fff;
    transition: all 0.3s ease;
}

/* Hover color (CLUE COLOR) */
.footer a:hover,
.footer__social__icon ul li a:hover,
.footer__widget .footer__menu ul li a:hover,
.copyright__menu ul li a:hover {
    color: #1FB6C9 !important;
}

/* Optional: underline effect on hover */
.footer a:hover {
    text-decoration: underline;
}

/* Fix image overflow */
.grid__wraper {
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.grid__wraper:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Image zoom on hover */
.grid__wraper__img__inner img {
    transition: transform 0.3s ease;
}

.grid__wraper:hover .grid__wraper__img__inner img {
    transform: scale(1.05);
}

.grid__wraper__img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    width: 100%;
}

.grid__wraper__img__inner {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.grid__wraper__img__inner a {
    display: block;
    width: 100%;
    height: 100%;
}

.grid__wraper__img__inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

/* Secondary image hover effect */
.grid__wraper__img__inner .secondary__image {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
}

.grid__wraper__img__inner:hover .primary__image {
    opacity: 0;
}

.grid__wraper__img__inner:hover .secondary__image {
    opacity: 1;
    visibility: visible;
}

/* Responsive */
@media (max-width: 767px) {
    .grid__wraper__icon ul li a {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }
    
    .grid__wraper__badge span {
        padding: 3px 6px;
        font-size: 10px;
    }
    
    .grid__wraper__tittle {
        font-size: 12px;
    }
    
    .grid__wraper__price {
        font-size: 12px;
    }
}