*:not(i) {
    font-family: 'Poppins', sans-serif !important;
}

i.fas, i.fab, i.far, i.fa-solid, i.fa-brands {
    font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands" !important;
}

h2 {
    text-align: center;
    font-size: 2rem;
    margin: 20px 0;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    padding: 20px;
    max-width: 1200px;
    margin: auto;
}

.card {
    border: 2px solid #27245F;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    position: relative;
    background: #fff;
}

.card .img-box {
    width: 100%;
    height: 180px;
    /* adjust as needed */
    background-color: #f4f4f4;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


.card:nth-child(1) .img-box {
    background-color: #f78e8e;
}

.card:nth-child(2) .img-box {
    background-color: #d3a9bb;
}

.card:nth-child(3) .img-box {
    background-color: #fbd283;
}

.card:nth-child(4) .img-box {
    background-color: #d28bb5;
}

.img-box img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.cart-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #e1ad01;
    border-radius: 50%;
    padding: 5px;
}

.cart-icon::before {
    content: "🛒";
    font-size: 18px;
}

.details {
    padding: 10px;
    text-align: center;
}

.details h3 {
    font-size: 1.5rem;
    margin: 0;
}

.details .weight {
    font-size: 0.9rem;
    color: #777;
}

.details p {
    font-weight: bold;
    margin: 5px 0;
}

.quantity-control {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #27245F;
    color: white;
    border-radius: 0 0 15px 15px;
    padding: 10px 0;
    gap: 10px;
}

.quantity-control button {
    background: black;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
}

.quantity-control .plus {
    background: red;
}

.quantity-control span {
    font-weight: bold;
    background: #27245F;
    padding: 5px 10px;
    border-radius: 5px;
}

@media (max-width: 600px) {
    .details h3 {
        font-size: 1.2rem;
    }

    .quantity-control {
        flex-direction: column;
        gap: 5px;
    }

    .quantity-control button,
    .quantity-control span {
        width: 100%;
    }
}



.about-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
    overflow: hidden;
}

.bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: fit-content;
    height: fit-content;
    object-fit: cover;
    z-index: -2;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(16, 46, 118, 0.7);
    width: 100%;
    height: 100%;
    z-index: -1;
}

.content-wrapper {
    max-width: 1500px;
    width: 100%;
    padding: 2rem;
}

.section-title {
    text-align: center;
    
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #fff;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.image-box {
    flex: 1 1 300px;
    text-align: center;
    margin-bottom: 20px;
}

.image-box img {
    max-width: 100%;
    border-radius: 50%;
    background-color: #ffffff00;
    padding: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0);
}

.text-box {
    flex: 1 1 500px;
    padding: 20px;
    border-radius: 10px;
}

.text-box h1 {
    
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.text-box p {
    font-size: 1rem;
    line-height: 1.6;
    color: #f0f0f0;
}

.read-more {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 25px;
    color: #fff;
    border: 2px solid #fff;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.read-more:hover {
    background: #fff;
    color: #27245F;
}

.bottom-veg-img {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 550px;
    z-index: 1;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .about-content {
        flex-direction: column;
    }

    .text-box h1 {
        font-size: 1.8rem;
    }

    .bottom-veg-img {
        width: 200px;
    }
}

.container {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    background-color: #e0e0f0;
    padding: 20px 0;
    box-sizing: border-box;
}

.side-image-wrapper {
    width: 20%;
    min-width: 100px;
    height: 300px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.side-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.content-wrapper {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-grow: 1;
    padding: 20px;
    box-sizing: border-box;
    flex-wrap: wrap;
    gap: 30px;
}

.stat-item {
    text-align: center;
    flex-basis: calc(33% - 40px);
    min-width: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.number {
    font-size: 2.5em;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
}

.icon-circle {
    width: 80px;
    height: 80px;
    background-color: #27245F;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.icon-circle i {
    color: white;
    font-size: 3em;
}

.label {
    font-size: 1.1em;
    color: #555;
    font-weight: 600;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .container {
        flex-direction: column;
        padding: 0;
    }

    .side-image-wrapper {
        width: 100%;
        height: 150px;
    }

    .content-wrapper {
        flex-direction: column;
        padding: 20px 10px;
        gap: 40px;
    }

    .stat-item {
        flex-basis: auto;
        min-width: unset;
    }

    .number {
        font-size: 2em;
    }

    .icon-circle {
        width: 70px;
        height: 70px;
    }

    .icon-circle i {
        font-size: 2.5em;
    }

    .label {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .side-image-wrapper {
        height: 100px;
    }

    .number {
        font-size: 1.8em;
    }

    .icon-circle {
        width: 60px;
        height: 60px;
    }

    .icon-circle i {
        font-size: 2em;
    }
}

.hero-section {
    position: relative;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 0px;
}

.background-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -1;
    transform: translate(-50%, -50%);
    background-size: cover;
    opacity: 0.1;
}

.content-overlay {
    position: relative;
    display: flex;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
    align-items: center;
    justify-content: space-between;
    z-index: 1;
}

.text-content {
    flex: 1;
    padding-right: 40px;
    max-width: 50%;
}

.text-content h1 {
    
    font-size: 4.5em;
    color: #27245F;
    line-height: 1.1;
    margin-bottom: 20px;
}

.text-content p {
    font-size: 1.1em;
    line-height: 1.6;
    color: #333;
    margin-bottom: 30px;
    max-width: 550px;
}

.shop-now-button {
    display: inline-block;
    padding: 15px 40px;
    background-color: transparent;
    border: 2px solid #27245F;
    color: #27245F;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1em;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.shop-now-button:hover {
    background-color: #27245F;
    color: white;
}

.image-content {
    flex-shrink: 0;
    position: relative;
    width: 550px;
    height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #27245F;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.image-content img {
    width: 110%;
    height: 110%;
    object-fit: cover;
    object-position: center;
    transform: translateY(5%);
    clip-path: circle(50% at 50% 50%);
}

@media (max-width: 992px) {
    .content-overlay {
        flex-direction: column;
        text-align: center;
    }

    .text-content {
        padding-right: 0;
        margin-bottom: 40px;
        max-width: 100%;
    }

    .text-content h1 {
        font-size: 3.5em;
    }

    .text-content p {
        max-width: 80%;
        margin-left: auto;
        margin-right: auto;
    }

    .image-content {
        width: 400px;
        height: 400px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        height: auto;
        /* Allow height to adjust */
        padding: 50px 0;
    }

    .text-content h1 {
        font-size: 2.8em;
    }

    .text-content p {
        font-size: 1em;
    }

    .image-content {
        width: 300px;
        height: 300px;
    }
}

@media (max-width: 480px) {
    .text-content h1 {
        font-size: 2em;
    }

    .shop-now-button {
        padding: 12px 30px;
        font-size: 1em;
    }

    .image-content {
        width: 250px;
        height: 250px;
    }
}


.product-container {
    display: flex;
    flex-direction: column;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    max-width: 1000px;
    width: 100%;
    overflow: hidden;
}

.image-gallery {
    flex: 1;
    background-color: #fff;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.main-image-box {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 1 / 1;
    background-color: #f0f0f0;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.main-image-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.thumbnail-images {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.thumbnail {
    width: 70px;
    height: 70px;
    border: 2px solid transparent;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    object-fit: cover;
}

.thumbnail.active {
    border-color: #e53935;
    box-shadow: 0 0 0 3px rgba(229, 57, 53, 0.3);
}

.thumbnail:hover:not(.active) {
    border-color: #ff8a80;
}

.product-details {
    flex: 1;
    background-color: #fff8f5;
    padding: 30px 25px;
    border-radius: 12px;
}

.product-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.product-name {
    
    font-size: 2em;
    font-weight: 700;
    color: #333;
    margin: 0;
    line-height: 1.2;
}

.share-icon {
    background-color: #f0f0f0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.1em;
    color: #666;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.share-icon:hover {
    background-color: #e0e0e0;
}

.product-rating {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.product-rating .stars {
    color: #fbc02d;
    font-size: 1.1em;
}

.product-rating .rating-value {
    font-size: 0.9em;
    color: #555;
}

.product-price-info {
    margin-bottom: 20px;
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.price {
    font-size: 2.8em;
    font-weight: 700;
    color: #27245F;
}

.unit-max {
    font-size: 1em;
    color: #777;
}

.delivery-info {
    font-size: 0.9em;
    color: #27245F;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.delivery-info i {
    color: #27245F;
}

.delivery-info .delivery-date {
    font-weight: 700;
    color: #333;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
}

.quantity-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    font-size: 1.2em;
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.1s ease;
    outline: none;
}

.quantity-btn.minus-btn {
    background-color: #f0f0f0;
    color: #666;
}

.quantity-btn.minus-btn:hover:not(:disabled) {
    background-color: #e0e0e0;
}

.quantity-btn.minus-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.quantity-btn.plus-btn {
    background-color: #e53935;
    color: #fff;
}

.quantity-btn.plus-btn:hover {
    background-color: #d32f2f;
}

.quantity-btn:active {
    transform: scale(0.95);
}

.quantity-display {
    width: 80px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1em;
    font-weight: 700;
    color: #333;
    background-color: #fff;
}

.action-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.action-buttons button {
    flex: 1;
    padding: 12px 20px;
    border: none;
    border-radius: 25px;
    font-size: 1.05em;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.1s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 150px;
}

.add-to-cart-btn {
    background-color: #fff;
    color: #333;
    border: 1px solid #ddd;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.add-to-cart-btn:hover {
    background-color: #f0f0f0;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}

.buy-now-btn {
    background-color: #27245F;
    color: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.buy-now-btn:hover {
    background-color: #43a047;
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.15);
}

.action-buttons button:active {
    transform: translateY(1px);
}

@media (min-width: 768px) {
    .product-container {
        flex-direction: row;
        padding: 0;
    }

    .image-gallery {
        border-top-left-radius: 12px;
        border-bottom-left-radius: 12px;
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
        padding: 30px;
    }

    .product-details {
        border-top-right-radius: 12px;
        border-bottom-right-radius: 12px;
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
        padding: 30px;
    }

    .product-name {
        font-size: 2.5em;
    }

    .price {
        font-size: 3.5em;
    }

    .action-buttons button {
        max-width: 200px;
    }
}

@media (min-width: 1024px) {
    .product-container {
        max-width: 1000px;
    }

    .image-gallery,
    .product-details {
        flex: 1;
    }

    .image-gallery {
        padding: 40px;
    }

    .product-details {
        padding: 40px;
    }

    .product-name {
        font-size: 2.8em;
    }

    .price {
        font-size: 4em;
    }

    .action-buttons {
        justify-content: flex-start;
        flex-wrap: nowrap;
    }
}

@media (max-width: 480px) {


    .product-details {
        padding: 20px 15px;
    }

    .product-name {
        font-size: 1.8em;
    }

    .price {
        font-size: 2.5em;
    }

    .action-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .action-buttons button {
        width: 100%;
        max-width: none;
    }

    .thumbnail {
        width: 60px;
        height: 60px;
    }
}

.container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    width: 100%;
    max-width: 900px;
}

.card {
    background-color: #fff;
    border: 1px solid #d0d0f0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    flex: 1;
    min-width: 280px;
    box-sizing: border-box;
    padding: 0;
    overflow: hidden;
}

.card-title {
    background-color: #d0d0f0;
    color: #27245F;
    padding: 10px 15px;
    margin: 0;
    font-size: 1.2em;
    font-weight: bold;
    border-bottom: 1px solid #c0c0e0;
}

.card-content {
    padding: 15px;
    color: #333;
    line-height: 1.6;
}

.card-content p {
    margin: 0 0 8px 0;
    display: flex;
    align-items: baseline;
}

.card-content p:last-child {
    margin-bottom: 0;
}

.label {
    flex-basis: 120px;
    min-width: 80px;
    font-weight: bold;
}

.value {
    flex-grow: 1;
}

@media (max-width: 600px) {
    .container {
        flex-direction: column;
        align-items: center;
    }

    .card {
        width: 95%;
        min-width: unset;
    }

    .label {
        flex-basis: 100px;
    }
}

@media (min-width: 601px) and (max-width: 900px) {
    .card {
        flex-basis: calc(50% - 20px);
    }
}

.container {
    max-width: 1000px;
    margin: 20px auto;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.section-title {
    font-size: 1.3em;
    font-weight: bold;
    margin-bottom: 15px;
    padding-left: 20px;
}

.green-text {
    color: #27245F;
}

.content-grid {
    display: flex;
    flex-wrap: wrap;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.description-section,
.features-section {
    flex: 1 1 48%;
    padding: 20px;
    box-sizing: border-box;
}

.description-section {
    border-right: 1px solid #eee;
}

@media (max-width: 768px) {

    .description-section,
    .features-section {
        flex: 1 1 100%;
        border-right: none;
        padding-bottom: 0;
    }

    .content-grid {
        border-bottom: none;
        margin-bottom: 0;
    }

    .description-section {
        padding-bottom: 20px;
        border-bottom: 1px solid #eee;
    }

    .features-section {
        padding-top: 20px;
    }
}

.features-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-section ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
}

.features-section ul li:last-child {
    margin-bottom: 0;
}

.features-section ul li::before {
    content: "\2022";
    color: #27245F;
    font-size: 1.2em;
    position: absolute;
    left: 0;
    top: 0;
}

.detailed-info-section {
    background-color: #27245F;
    color: #fff;
    padding: 20px;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.detailed-info-section .section-title {
    color: #fff;
    margin-top: 0;
}

.detailed-info-section p {
    margin-bottom: 0;
}

.cart-summary-container {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    padding: 30px;
    width: 100%;
    max-width: 450px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cart-total-header {
    font-size: 1.4em;
    font-weight: 700;
    color: #27245F;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e6e6e6;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    font-size: 1.1em;
    color: #444;
}

.cart-item:not(.total-row) {
    border-bottom: 1px dashed #dcdcdc;
    padding-bottom: 15px;
    margin-bottom: 10px;
}

.item-label {
    flex-grow: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    position: relative;
    padding-right: 15px;
}

.item-label::after {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    overflow: hidden;
    height: 1em;
    white-space: pre;
    font-size: inherit;
    letter-spacing: 0.1em;
    color: #ccc;
    z-index: -1;
}

.item-label span {
    background-color: #fff;
    padding-right: 5px;
    position: relative;
    z-index: 1;
}


.item-value {
    font-weight: bold;
    color: #27245F;
    min-width: 60px;
    text-align: right;
}

.total-row .item-value {
    font-size: 1.2em;
    font-weight: 800;
}

.cart-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 25px;
}

.return-button,
.checkout-button {
    padding: 14px 20px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-size: 1.05em;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.return-button {
    background-color: #f0f0f0;
    color: #555;
    border: 1px solid #d0d0d0;
}

.return-button:hover {
    background-color: #e0e0e0;
    border-color: #c0c0c0;
    color: #333;
}

.checkout-button {
    background-color: #ff3b30;
    color: #fff;
    box-shadow: 0 4px 10px rgba(255, 59, 48, 0.3);
}

.checkout-button:hover {
    background-color: #e6312a;
    box-shadow: 0 6px 15px rgba(255, 59, 48, 0.4);
}

.return-button svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
}

@media (min-width: 600px) {
    .cart-actions {
        flex-direction: row;
        justify-content: space-between;
    }

    .return-button,
    .checkout-button {
        flex: 1;
        max-width: calc(50% - 7.5px);
    }
}

@media (max-width: 480px) {
    .cart-summary-container {
        padding: 20px;
    }

    .cart-total-header {
        font-size: 1.3em;
    }

    .cart-item {
        font-size: 1em;
    }

    .return-button,
    .checkout-button {
        padding: 12px 15px;
        font-size: 0.95em;
    }
}

.container {
    display: grid;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.product-card {
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    gap: 15px;
    align-items: center;
    background-color: #e0e0f0;
    border: 2px solid #27245F;
    border-radius: 8px;
    padding: 15px;
    position: relative;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.product-image-wrapper {
    background-color: #aaaaff;
    border-radius: 4px;
    padding: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-image {
    width: 80px;
    height: 80px;
    object-fit: contain;
    background-color: transparent;
}

.product-details {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.product-title {
    font-size: 1.2em;
    font-weight: bold;
    color: #333;
}

.rating {
    display: flex;
    align-items: center;
}

.star {
    color: #e1ad01;
    margin-right: 2px;
    font-size: 1.1em;
}

.rating-value {
    font-size: 0.9em;
    color: #666;
}

.quantity-control {
    display: flex;
    align-items: center;
    background-color: #fff;
    border-radius: 25px;
    overflow: hidden;
    border: 1px solid #ccc;
}

.quantity-button {
    background-color: #eee;
    border: none;
    padding: 8px 12px;
    cursor: pointer;
    font-size: 1.2em;
    font-weight: bold;
    color: #555;
    transition: background-color 0.2s;
}

.quantity-button.minus {
    background-color: #d3d3d3;
}

.quantity-button.plus {
    background-color: #ff4d4d;
    color: white;
}

.quantity-button:hover {
    background-color: #ddd;
}

.quantity-button.plus:hover {
    background-color: #e60000;
}

.quantity-display {
    padding: 8px 15px;
    font-size: 1em;
    font-weight: bold;
    color: #333;
    white-space: nowrap;
}

.quantity-info {
    font-size: 0.8em;
    color: #888;
    text-align: center;
    grid-column: 3;
    padding-top: 5px;
}

.quantity-info.max-limit {
    color: #ff0000;
}

.price {
    font-size: 1.8em;
    font-weight: bold;
    color: #000;
    white-space: nowrap;
}

.delete-button {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #ff4d4d;
    color: white;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 1.2em;
    transition: background-color 0.2s;
}

.delete-button:hover {
    background-color: #e60000;
}

@media (max-width: 768px) {
    .product-card {
        grid-template-columns: auto 1fr;
        grid-template-rows: auto auto auto;
        gap: 10px;
    }

    .product-image-wrapper {
        grid-column: 1;
        grid-row: 1;
    }

    .product-details {
        grid-column: 2;
        grid-row: 1;
    }

    .quantity-control {
        grid-column: 1 / span 2;
        grid-row: 2;
        justify-self: center;
    }

    .quantity-info {
        grid-column: 1 / span 2;
        grid-row: 3;
        text-align: center;
    }

    .price {
        grid-column: 1 / span 2;
        grid-row: 4;
        text-align: center;
        margin-top: 10px;
    }

    .delete-button {
        top: 5px;
        right: 5px;
    }
}

@media (max-width: 480px) {
    .product-card {
        padding: 10px;
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        text-align: center;
    }

    .product-image-wrapper {
        margin: 0 auto;
        grid-column: 1;
        grid-row: auto;
    }

    .product-details {
        align-items: center;
        grid-column: 1;
        grid-row: auto;
    }

    .quantity-control {
        grid-column: 1;
        grid-row: auto;
    }

    .quantity-info {
        grid-column: 1;
        grid-row: auto;
    }

    .price {
        grid-column: 1;
        grid-row: auto;
        margin-top: 5px;
    }
}

.cart-summary {
    max-width: 1200px;
    margin: auto;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    background-color: white;
    overflow: hidden;
}

.cart-summary h2 {

    color: #27245F;
    font-size: 1.2rem;
    padding: 15px;
    border-bottom: 1px solid #ccc;
}

.summary-details {
    background-color: #e0e0f0;
    padding: 15px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px dashed #999;
    font-size: 1rem;
}

.summary-row:last-child {
    border-bottom: none;
}

.summary-label {
    color: #444;
}

.summary-amount {
    font-weight: bold;
    color: #27245F;
}

.cart-buttons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background-color: white;
    flex-wrap: wrap;
    gap: 10px;
}

.btn {
    flex: 1 1 45%;
    text-align: center;
    padding: 12px;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-back {
    border: 1px solid #aaa;
    background-color: white;
    color: #333;
}

.btn-back:hover {
    background-color: #f0f0f0;
}

.btn-checkout {
    background-color: #27245F;
    color: white;
    border: none;
}

.btn-checkout:hover {
    background-color: #27245F;
}

/* Icons */
.btn svg {
    margin-right: 8px;
}

@media (max-width: 480px) {
    .cart-summary {
        width: 100%;
    }

    .btn {
        flex: 1 1 100%;
    }
}

.product-container {
    max-width: 1200px;
    margin: auto;
    background-color: #ffffff;
    border: 6px solid #27245F;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.product-card {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    background-color: #e0e0f0;
    border: 3px solid #27245F;
    border-radius: 10px;
    padding: 10px;
    gap: 10px;
}

.product-img {
    flex: 0 0 80px;
}

.product-img img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
}

.product-details {
    flex: 1 1 160px;
}

.product-title {
    font-weight: bold;
    font-size: 1rem;
    color: #222;
}

.product-rating {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: #444;
    margin-top: 5px;
}

.stars {
    color: #e1ad01;
    margin-right: 6px;
}

.product-controls {
    flex: 1 1 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.quantity-controls {
    display: flex;
    align-items: center;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #ccc;
}

.quantity-controls button {
    border: none;
    padding: 6px 12px;
    font-size: 1rem;
    cursor: pointer;
    background-color: #ccc;
    color: #000;
}

.quantity-controls .plus {
    background-color: red;
    color: white;
}

.quantity-display {
    padding: 0 10px;
    font-weight: bold;
}

.max-note {
    font-size: 0.75rem;
    color: red;
    margin-top: 4px;
}

.product-price {
    flex: 0 0 60px;
    font-size: 1.3rem;
    font-weight: bold;
    color: #000;
    text-align: center;
}

.remove-btn {
    flex: 0 0 40px;
    text-align: center;
    cursor: pointer;
    background-color: white;
}

.remove-btn svg {
    fill: red;
    width: 20px;
    height: 20px;
    background-color: white;
}

@media (max-width: 600px) {
    .product-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .product-controls {
        flex-direction: row;
        justify-content: space-between;
        width: 100%;
        margin-top: 10px;
    }

    .product-price {
        order: 1;
    }

    .remove-btn {
        align-self: flex-end;
        background-color: white;
    }
}

.container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.outer-card {
    background: #27245F;
    border-radius: 15px;
    padding: 12px;
    width: 100%;
    max-width: 420px;
    flex: 1 1 300px;
}

.card-title {
    color: white;
    font-weight: bold;
    font-size: 1rem;
    margin: 0 0 10px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.inner-box {
    background: white;
    border-radius: 10px;
    padding: 12px;
}

.form-group {
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.form-group label {
    display: block;
    margin-bottom: 4px;
    color: #222;
}

input[type="text"] {
    width: 100%;
    padding: 8px;
    border-radius: 6px;
    border: 1px solid #ccc;
}

.radio-group label {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

input[type="radio"] {
    appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid #27245F;
    border-radius: 50%;
    margin-right: 10px;
    position: relative;
}

input[type="radio"]:checked::before {
    content: "";
    width: 10px;
    height: 10px;
    background: #27245F;
    border-radius: 50%;
    position: absolute;
    top: 3px;
    left: 3px;
}

.edit-icon {
    background: white;
    border-radius: 50%;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.edit-icon svg {
    width: 14px;
    height: 14px;
    fill: #27245F;
}

@media (max-width: 600px) {
    .container {
        flex-direction: column;
    }
}

/* Ultimate Premium Product Card */
.product-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.03);
    height: 100%;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(39, 36, 95, 0.15);
}

.product-card-image {
    width: 100%;
    height: 260px;
    position: relative;
    overflow: hidden;
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.product-card-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-card-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: #2d3436;
    margin-bottom: 12px;
    line-height: 1.2;
}

.product-card-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.product-badge-pill {
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Different Badge Colors */
.badge-natural { background: #e8f5e9; color: #2e7d32; }
.badge-premium { background: #fff8e1; color: #f57f17; }
.badge-fragrance { background: #f3e5f5; color: #7b1fa2; }

.product-badge-pill i {
    font-size: 12px;
}

.product-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid #f5f5f5;
}

.price-container {
    display: flex;
    flex-direction: column;
}

.price-container .amount {
    font-size: 1.6rem;
    font-weight: 900;
    color: #27245F;
    line-height: 1;
}

.price-container .label {
    font-size: 12px;
    color: #a0a0a0;
    font-weight: 500;
    margin-top: 5px;
}

.btn-add-ultimate {
    background: linear-gradient(135deg, #27245F, #1c4599);
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(39, 36, 95, 0.2);
    flex-shrink: 0;
}

.btn-add-ultimate:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(39, 36, 95, 0.3);
}

.ribbon-offer {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #ff4757;
    color: #fff;
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    z-index: 5;
    box-shadow: 0 4px 10px rgba(255, 71, 87, 0.3);
}

.card-stretched-link::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    content: "";
}

.product-card form {
    margin: 0;
    z-index: 10;
    position: relative;
}
