.about-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
}

.about-title {
    font-size: 26px;
    font-weight: 600;
    color: #1e1e1e;
}

.sub-heading {
    font-size: 18px;
    font-weight: 500;
    margin-top: 15px;
}

.about-text {
    font-size: 15.5px;
    color: #444;
    line-height: 1.7;
}

.about-list {
    margin-top: 15px;
    list-style: none;
}

.about-list li {
    font-size: 15px;
    color: #333;
    padding: 10px 12px;
    background: #f8f9fa;
    margin-bottom: 10px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    transition: background 0.3s ease;
}

.about-list li:hover {
    background: #e9f5f1;
}

.about-list .icon {
    color: #198754;
    font-weight: bold;
    margin-right: 10px;
    font-size: 18px;
    line-height: 1;
}

    .section-title {
        font-size: 32px;
        font-weight: 700;
        margin-bottom: 40px;
        text-align: center;
        position: relative;
    }

    .section-title::after {
        content: '';
        width: 60px;
        height: 3px;
        background: #9f2089;
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        border-radius: 2px;
    }

    .custom-card {
        background: #fff;
        border-left: 5px solid #9f2089;
        border-radius: 12px;
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.07);
        padding: 25px 20px;
        height: 100%;
        transition: all 0.3s ease;
    }

    .custom-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
    }

    .custom-card h4 {
        font-size: 25px;
        font-weight: 600;
        color: #9f2089;
        margin-bottom: 15px;
    }

    .custom-card p {
        font-size: 15px;
        color: #333;
    }

    .custom-list {
        list-style: none;
        padding-left: 0;
    }

    .custom-list li {
        background: #f8f9fa;
        border-radius: 8px;
        margin-bottom: 8px;
        padding: 8px 12px;
        display: flex;
        align-items: center;
        font-size: 15px;
        color: #444;
    }

    .custom-list li span {
        color: #9f2089;
        font-size: 18px;
        margin-right: 10px;
    }

.why-point {
        margin-bottom: 25px;
    }

    .why-point h6 {
        font-size: 18px;
        font-weight: 600;
        color: #000;
        margin-bottom: 6px;
    }

    .why-point p {
        margin: 0;
        color: #555;
        line-height: 1.6;
    }

    .founder-card {
        display: flex;
        gap: 20px;
        align-items: center;
        background: linear-gradient(to right, #f5f9ff, #fff);
        border-left: 5px solid #9f2089;
        border-radius: 12px;
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.07);
        padding: 20px;
        margin-top: 30px;
        animation: fadeIn 0.8s ease;
    }
    .founder-card h3{
        font-size: 25px;
        font-weight: 600;
        color: #9f2089;
        margin-bottom: 10px;
    }
    .founder-avatar {
        width: 100px;
        height: 100px;
        border-radius: 50%;
        /*background-image: url({{asset('public/images/profile.png')}}) no-repeat center/cover;*/
        border: 4px solid #9f2089;
        flex-shrink: 0;
        background-size:100% 100%;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @media (max-width: 768px) {
        .founder-card {
            flex-direction: column;
            text-align: center;
        }
    }
    
.contact-section {
        background: #f8f9fa;
        padding: 60px 20px;
        border-top: 3px solid #9f2089;
    }

   .contact-section {
        background: #f8f9fa;
        padding: 60px 20px;
        border-top: 3px solid #9f2089;
    }

    .contact-card {
        background: #fff;
        border-left: 6px solid #9f2089;
        border-radius: 12px;
        box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
        padding: 30px;
        max-width: 900px;
        margin: 0 auto;
        animation: slideFade 0.7s ease-in-out;
    }

    .contact-card h3 {
        font-weight: 700;
        color: #9f2089;
        font-size:25px;
        margin-bottom: 15px;
    }

    .contact-card p {
        font-size: 16px;
        color: #444;
        margin-bottom: 20px;
    }

    .tag-badge {
        background-color: #e9f2ff;
        color: #9f2089;
        font-size: 14px;
        padding: 6px 14px;
        margin: 5px;
        display: inline-block;
        border-radius: 20px;
        font-weight: 500;
        transition: all 0.3s ease;
    }

    .tag-badge:hover {
        background-color: #d4e7ff;
    }

    .tagline {
        font-size: 17px;
        font-weight: 600;
        color: #212529;
        background: #e9f6ff;
        padding: 12px 20px;
        border-left: 4px solid #9f2089;
        border-radius: 6px;
        display: inline-block;
        margin-top: 20px;
    }

    @keyframes slideFade {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

.product-rating-badge {
    display:flex;
    align-items: center;
    gap: 5px;
    background-color: #28a745;
    color: #fff;
    padding: 4px 6px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 11px;
    width: fit-content;
     margin-bottom:3px; 
    line-height: normal;
}

.product-rating-badge i {
    color: #fff;
      line-height: normal;
}

.discount-badge {
    display: inline-block;
    background-color: #fbe4e6; /* Bootstrap red */
    color: #dc3545;
    padding: 4px 7px;
    border-radius: 5px; /* Rounded pill */
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top:7px;
}

.trackBtn {
  width: 140px;
  height: 44px;
  border-radius: 40px;
  border: 1px solid rgba(255, 255, 255, 0.349);
  background-color: #9f2089;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  cursor: pointer;
  transition: all 0.3s ease;
  overflow: hidden;
  padding: 0 5px;
  margin-left:2.5rem;
}

.IconContainer {
  width: 50px;
  height: 34px;
  background: #fff;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: all 0.3s ease;
  font-size: 18px;
}

.icon {
  pointer-events: none;
}

.text {
  height: 100%;
  width: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  z-index: 1;
  transition: all 0.3s ease;
  font-size: 1em;
}

.trackBtn:hover .IconContainer {
  width: 100%;
  border-radius: 40px;
}

.trackBtn:hover .text {
  transform: translateX(10px);
  width: 0;
  font-size: 0;
}

.trackBtn:active {
  transform: scale(0.95);
}


 .white-svg {
    filter: brightness(0) invert(1) !important;
} 

.product-image a{
    width:100% !important;
}
.product-image a img{
    width:100% !important;
    object-fit:cover;
    height: calc(200px + (140 - 100) * ((100vw - 320px) / (1920 - 320))) !important;
}

.crt-btn{
    border:1px solid #9F2089;
    color: #9F2089;
}
.crt-btn:hover{
    background-color: #9F2089;
    color:#fff;
}

.buy-btn{
    border:1px solid #9F2089;
    color: #fff;
    background-color: #9F2089;
}
.buy-btn:hover{
    background-color: #fff;
    color:#9F2089;
}


.price-rating {
        margin-bottom: 0rem;
    }

    .price-details {
        display: flex;
        align-items: center;
        gap: 1rem;
        flex-wrap: wrap;
        font-size:0.9rem;
        font-weight: 600;
    }

    .price-details .discount {
        color: green;
    }

    .price-details .mrp {
        text-decoration: line-through;
        color: #dc3545;
    }

    .price-details .current-price {
        color: #9f2089;
    }

    .congrats-line {
        color: green;
        font-weight: 500;
        text-align:start;
        margin-top: 5px;
        font-size: 0.9rem;
        animation: textFlash 2s ease-in-out infinite;
    }

    @keyframes textFlash {
        0%, 100% {
            opacity: 1;
            /* transform: translateY(0); */
        }
        50% {
            opacity: 0.6;
            /* transform: translateY(-2px); */
        }
    }

    
.feature-list{
           display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 17px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 20px;
    border-bottom: 1px solid #ececec;
    padding-bottom: 16px;
    }
.feature-list a{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: calc(5px + (8 - 5) * ((100vw - 320px) / (1920 - 320)));
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #222;
}

.custom-alert {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    min-width: 350px;
    max-width: 100%;
    padding: 1rem 1.3rem;
    border-left: 6px solid;
    border-radius: 5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    font-family: Arial, sans-serif;
    display: flex;
    align-items: center;
    justify-content: space-between;
    opacity: 0;
    z-index: 999999;
    pointer-events: auto;
    animation: slideDown 0.5s forwards;
}

/* Alert types */
.custom-alert.success-alert {
    background-color: #e6f4ea;
    border-left-color: #198754;
    color: #155724;
}

.custom-alert.warning-alert {
    background-color: #fff9e6;
    border-left-color: #ffc107;
    color: #856404;
}

.custom-alert.error-alert {
    background-color: #f8e6e9;
    border-left-color: #dc3545;
    color: #721c24;
}

/* Icons and text */
.custom-alert .icon {
    margin-right: 10px;
    font-size: 1.5rem;
}

.custom-alert .message {
    flex-grow: 1;
    font-size: 1rem;
    font-weight: 500;
}

/* Close button */
.custom-alert .close-btn {
    background: none;
    border: none;
    font-size: 1.25rem;
    font-weight: bold;
    cursor: pointer;
    color: inherit;
    margin-left: 10px;
    line-height: 1;
}

/* Slide-in animation */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translate(-50%, -40px);
    }
    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

/* Slide-out class (manually added via JS) */
.slide-up {
    animation: slideUp 0.5s forwards;
}

@keyframes slideUp {
    from {
        opacity: 1;
        transform: translate(-50%, 0);
    }
    to {
        opacity: 0;
        transform: translate(-50%, -40px);
    }
}

/* Css for invoice start  */

.invoice-container {
    background: white;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 15px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    border: 1px solid #e0e0e0;
    border-radius: 8px;
}

.invoice-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #9f2089;
}

.invoice-logo {
    height: 40px;
    color: #9f2089;
}

.invoice-logo img {
    height: 100%;
    width: auto;
    max-width: 150px;
}

.invoice-title {
    font-size: 20px;
    font-weight: 600;
    text-align: right;
    color: #9f2089;
    margin-top: 8px;
}

.invoice-section-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #333;
}

.invoice-address {
    line-height: 1.3;
    color: #555;
    font-size: 13px;
}

.invoice-meta-item {
    display: flex;
    margin-bottom: 6px;
    flex-wrap: wrap;
}

.invoice-meta-label {
    font-weight: 500;
    min-width: 100px;
    color: #555;
    font-size: 13px;
}

.invoice-meta-value {
    font-weight: 600;
    color: #333;
    font-size: 13px;
}

.invoice-table {
    width: 100%;
    border-collapse: collapse;
    margin: 15px 0;
    font-size: 13px;
}

.invoice-table th {
    background: #9f2089;
    padding: 8px 10px;
    text-align: left;
    font-weight: 600;
    color: #fff;
    border: 1px solid #ddd;
}

.invoice-table td {
    padding: 8px 10px;
    border-bottom: 1px solid #eee;
    vertical-align: top;
}

.invoice-table tr:last-child td {
    border-bottom: none;
}

.text-right {
    text-align: right;
}

.text-center {
    text-align: center;
}

.invoice-totals {
    width: 100%;
    max-width: 280px;
    margin-left: auto;
    margin-top: 15px;
}

.invoice-total-row {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    border-bottom: 1px solid #eee;
    font-size: 13px;
}

.invoice-total-label {
    font-weight: 500;
}

.invoice-total-value {
    font-weight: 600;
}

.invoice-grand-total {
    font-size: 14px;
    border-bottom: none;
    margin-top: 8px;
    padding-top: 8px;
    border-top: 2px solid #ddd;
}

.invoice-footer {
    margin-top: 10px;
    padding-top: 12px;
    border-top: 2px solid #eee;
    text-align: center;
    color: #666;
    font-size: 12px;
}

.invoice-footer p {
    margin-bottom: 0.1rem;
    font-size: 10px;
    line-height: normal;
}

.invoice-actions {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.invoice-btn {
    padding: 8px 14px;
    border: none;
    border-radius: 5px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s;
    text-decoration: none;
    font-size: 13px;
}

.invoice-btn-print {
    background: #9f2089;
    color: white;
}

.invoice-btn-print:hover {
    background: #8a1c77;
}

.invoice-btn-download {
    background: #4caf50;
    color: white;
}

.invoice-btn-download:hover {
    background: #3d8b40;
}

.invoice-btn-back {
    background: #666;
    color: white;
}

.invoice-btn-back:hover {
    background: #555;
}

.remove-border-for-pdf {
    border: none !important;
    box-shadow: none !important;
    padding: 10px !important;
}

/* Mobile-specific styles */
@media (max-width: 768px) {
    body {
        font-size: 13px;
    }

    .invoice-container {
        padding: 12px;
        border-radius: 6px;
    }

    .invoice-header {
        flex-direction: column;
        text-align: center;
        margin-bottom: 12px;
    }

    .invoice-title {
        text-align: center;
        font-size: 18px;
    }

    .invoice-meta-item {
        /* flex-direction: column; */
        margin-bottom: 8px;
    }

    .invoice-meta-label {
        min-width: auto;
        margin-bottom: 3px;
        padding-right:10px;
    }

    .invoice-table {
        font-size: 12px;
    }

    .invoice-table th,
    .invoice-table td {
        padding: 6px 8px;
    }

    .invoice-actions {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    .invoice-btn {
        width: 200px;
        justify-content: center;
    }

    /* Make table responsive on mobile */
    .table-responsive {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    /* Stack columns on mobile */
    .mobile-stack {
        flex-direction: column;
    }

    .mobile-stack > div {
        width: 100%;
        margin-bottom: 15px;
    }

    .invoice-totals {
        max-width: 100%;
    }
}

/* Css for invoice end  */
.prd-detail-img{
    height:350px;
    width:350px;
}
.prd-detail-slider-nav-img{
    height:110px !important;
}

/* mobile cart product details view card  start */
.cart-product-card-phn {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #eaeaea;
}

.cart-product-card-phn:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.cart-product-card-phn .card-header {
    padding: 15px;
    border-bottom: 1px solid #f0f0f0;
    background: #fafafa;
}

.cart-product-card-phn .product-info {
    display: flex;
    align-items: center;
}

.cart-product-card-phn .product-image {
    width: 70px;
    height: 70px;
    border-radius: 8px;
    overflow: hidden;
    margin-right: 15px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border: 1px solid #eee;
}

.cart-product-card-phn .product-image img {
    width: 100%;
    height: 100%;
    object-fit: fill;
}

.cart-product-card-phn .cart-product-details {
    flex: 1;
}

.cart-product-card-phn .cart-product-name {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #333;
}

.cart-product-card-phn .cart-product-price {
    font-size: 15px;
    font-weight: 600;
    color: #9f2089;
    margin: 0;
}

.cart-product-card-phn .card-body {
    padding: 15px;
}

.cart-product-card-phn .quantity-section {
    margin-bottom: 15px;
}

.cart-product-card-phn .quantity-section label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 8px;
    color: #666;
}

.cart-product-quantity-control {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 140px;
}

.cart-product-quantity-control .btn {
    width: 36px;
    height: 36px;
    border-radius: 6px;
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #495057;
    transition: all 0.2s;
}

.cart-product-quantity-control .btn:hover {
    background: #e9ecef;
    color: #9f2089;
}

.cart-product-quantity-control .qty-input-mobile {
    width: 50px;
    height: 36px;
    border-radius: 6px;
    text-align: center;
    margin: 0 8px;
    border: 1px solid #dee2e6;
    font-weight: 600;
}

.cart-product-card-phn .total-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-top: 1px dashed #eaeaea;
}

.cart-product-card-phn .total-label {
    font-size: 14px;
    font-weight: 500;
    color: #555;
}

.cart-product-card-phn .total-value {
    font-size: 16px;
    font-weight: 700;
    color: #9f2089;
}

.cart-product-card-phn .card-footer {
    padding: 12px 15px;
    background: #fafafa;
    border-top: 1px solid #f0f0f0;
    text-align: center;
}

.cart-product-remove-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #e74c3c;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 6px;
    background: rgba(231, 76, 60, 0.08);
    transition: all 0.2s;
}

.cart-product-remove-btn:hover {
    background: rgba(231, 76, 60, 0.15);
    color: #c0392b;
    text-decoration: none;
}

.cart-product-remove-btn i {
    margin-right: 6px;
    font-size: 15px;
}

/* mobile cart product details view card  start */
@media (max-width: 767px) {
    .cart-table {
        display: none;
    }
}

@media (min-width: 768px) {
    .cart-mobile-cards {
        display: none;
    }
}


@media (max-width:1199px){
    .trackBtn {
    margin-left:0rem;
    margin-top:0.5rem;
    }
    .prd-detail-slider-nav-img{
     height:160px !important;
    }
}
@media (max-width:991px){
     .prd-detail-slider-nav-img{
    height:140px !important;
    }
}
@media (max-width:729px){
       
    .product-image a img{
    height: calc(250px + (140 - 100) * ((100vw - 320px) / (1920 - 320))) !important;
   }
   .prd-detail-slider-nav-img{
    height:100px !important;
   }
}

@media (max-width:500px){
       
    .product-image a img{
    height: calc(200px + (140 - 100) * ((100vw - 320px) / (1920 - 320))) !important;
   }
   .prd-detail-img{
    height:300px;
    width:300px;
   }
     .prd-detail-slider-nav-img{
    height:90px !important;
   }
}
@media (max-width:400px){
       
    .product-image a img{
    height: calc(150px + (140 - 100) * ((100vw - 320px) / (1920 - 320))) !important;
   }
   .custom-alert{
       padding: 1rem 0.6rem;
       min-width:320px;
       }
}

@media (max-width:360px){
    .btn-sm{
        padding:8px 7px;
    }
    .qty-box .input-group button{
        width: calc(17px + (35 - 26) * ((100vw - 320px) / (1920 - 320)));
        height: calc(26px + (35 - 26) * ((100vw - 320px) / (1920 - 320)));
    }
    .qty-box .input-group button i {
        font-size:12px;
    }
}

