.top-sell-btn
{
   background: #f59e0b;
    padding: 10px 35px;
    color: white;
    font-weight: 600;
    border-radius: 50px;
}
.top-sell-btn:hover
{
    
    color: white;
}
.hot-badge
{    position: absolute;
    top: 10px;
    right: 10px;
    background: #f59e0b;
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
}
@media (max-width: 768px) {

    .male-section .head-part h2 {
        font-size: 25px;
    }

    .ps-section--latest .ps-section__title
    {
        font-size: 18px !important;
    }
    .ps-home--13 .ps-section--latest .ps-section__title
    {
        font-size: 28px;
    }
    .ps-section__title::after
    {
        display: none;
    }

    .ps-section--latest {
        margin-top: 1.5rem;
    }

    .ps-section--latest .d-flex {
        flex-direction: row;
        align-items: center;
        gap: 0px;
    }

    .ps-section__title {
        font-size: 22px;
    }

    .top-sell-btn {
        padding: 8px 20px;
        font-size: 14px;
    }

    .ps-product__thumbnail img {
        height: 170px;
    }

    .ps-product__content h5 {
        font-size: 15px;
    }

    .ps-product__meta span {
        font-size: 14px;
    }

    /* Buy Now button */
    .ps-btn--success {
        padding: 8px 10px;
        font-size: 14px;
    }

    /* Cart button */
    .ps-product__content a[title="Add to cart"] {
        width: 40px;
        height: 40px;
    }
}


/* ------------------------------ */
/*   MOBILE 576px ↓               */
/* ------------------------------ */
@media (max-width: 576px) {

    .ps-section__title {
        font-size: 20px;
    }

    .top-sell-btn {
        font-size: 13px;
        padding: 7px 18px;
                margin-top: -10px;
    }

    .ps-product__thumbnail img {
        height: 150px;
    }

    .ps-product__content {
        padding: 5px 0;
    }

    .ps-product__content h5 {
        font-size: 14px;
        line-height: 1.3;
    }

    .ps-product__meta span {
        font-size: 13px;
    }

    .ps-btn--success {
        font-size: 13px;
        padding: 7px 12px;
    }

    .ps-product__content a[title="Add to cart"] {
        width: 38px;
        height: 38px;
    }
}


/* ------------------------------ */
/*   VERY SMALL PHONES 420px ↓    */
/* ------------------------------ */
@media (max-width: 420px) {

    .ps-section__title {
        font-size: 18px;
    }

    .ps-product__thumbnail img {
        height: 130px;
    }

    .ps-product__content h5 {
        font-size: 13px;
    }

    .ps-btn--success {
        font-size: 12px;
        padding: 6px 10px;
    }

    .ps-product__meta span {
        font-size: 12px;
    }

    .ps-product__content a[title="Add to cart"] {
        width: 34px;
        height: 34px;
    }
}

.mysection {
    padding: 60px 0;
    background: #f8f9fa;
}

.card-design {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
}

.card-design img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

/* Hover animation */
.card-design:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.15);
}

.card-design:hover img {
    transform: scale(1.07);
}

/* Responsive heights */
@media (max-width: 768px) {
    .mysection {
        display: none;
    }
    .bottom-banner .head-part h2
    {
        font-size: 20px;
    }
    .bottom-banner .head-part p
    {
        font-size: 15px;
    }
}

.male-section {
    padding: 3% 20px;
    background: white;
}

.male-section .head-part  {
    position: relative;
}
.male-section .head-part h2 {
    color: #000000;
    padding-bottom: 12px; /* Space for underline */
    font-weight: 700;
}

.male-section .head-part::before {
    content: "";
    width: 100%;
    height: 1px;
    background: #f1f1f1;
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
    opacity: 0.4; /* subtle thin line */
}

.male-section .head-part::after {
    content: "";
    width: 240px;        /* highlight bar */
    max-width: 100%;     /* responsive */
    height: 3px;
    background: #f49d0b;
    position: absolute;
    bottom: 0;           /* sits on top of black line */
    left: 0;
    display: block;
    border-radius: 3px;
}


.male-card-des {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 18px rgba(0,0,0,0.10);
    transition: all 0.3s ease;
    padding: 15px;
    position: relative;
    border: 1px solid #f1f1f1;
    margin-top: 30px;
}

/* Hover effect */
.male-card-des:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 28px rgba(0,0,0,0.15);
}

/* Image section */
.male-card-des .img-part {
    width: 100%;
    height: 180px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fafafa;
    border-radius: 12px;
    overflow: hidden;
}

.male-card-des .img-part img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.male-card-des:hover .img-part img {
    transform: scale(1.05);
}

/* Content section */
.male-card-des .card-cont-sec {
    padding: 12px 5px 5px;
}

/* Title */
.male-card-des .card-cont-sec h4 {
    font-size: 16px;
    color: #103178;
    font-weight: 600;
    margin-bottom: 5px;
    min-height: 30px;
    margin-top: 10px;
}

/* Category Badge */
.male-card-des .strong-badge span {
    background: #fef1bf;
    color: #000000;
    padding: 3px 10px;
    font-size: 13px;
    font-weight: bold;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 12px;
}

/* Price section */
.male-card-des .price-sec {
    display: flex;
   align-items: baseline;
    gap: 10px;
    margin-bottom: 15px;
}

.male-card-des .price-sec h5 {
    font-size: 20px;
    color: #113554;
    font-weight: 700;
}

.male-card-des .price-sec span {
    font-size: 15px;
    color: #888;
    text-decoration: line-through;
}

/* Buttons section */
.male-card-des ul {
    display: flex;
    justify-content: space-between;
    padding: 0;
    margin: 0;
    list-style: none;
}

.male-card-des ul li a {
    display: inline-block;
    text-decoration: none;
    background: #f59e0b;
    color: #fff;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    transition: 0.3s ease;
    font-weight: 600;
}

.male-card-des ul li:first-child a:hover {
    background: #e60023;
}

/* Cart button */
.male-card-des ul li:last-child a {
    background: #f0f0f0;
    padding: 8px 12px;
    border-radius: 10px;
}

.male-card-des ul li:last-child a:hover {
    background: #dcdcdc;
}


/* ---------------------------- */
/*     GLOBAL FOOTER STYLING    */
/* ---------------------------- */

.footer-wrapper {
    background: #0f172a;
    padding: 5% 20px;
    color: #d1d5db;
    font-family: 'Inter', sans-serif;
}

.footer-top {
    padding-bottom: 40px;
}

.footer-title {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    position: relative;
}

.footer-title::after {
    content: "";
    width: 40px;
    height: 2px;
    background: #10b981;
    position: absolute;
    bottom: -6px;
    left: 0;
    border-radius: 2px;
}

/* ---------------------------- */
/*     COMPANY INFO SECTION     */
/* ---------------------------- */

.footer-company img {
    max-width: 180px;
}

.footer-company h5 {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
}

.footer-company p,
.footer-company a {
    color: #d1d5db;
    line-height: 1.7;
}

.footer-address-icon {
    color: #10b981;
    margin-right: 8px;
}

/* ---------------------------- */
/*     SOCIAL ICONS             */
/* ---------------------------- */

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    list-style: none;
    padding: 0;
}

.footer-social li a {
     width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: 0.3s;
    padding: 0;   
}

.footer-social li a:hover {
    background: #10b981;
    transform: translateY(-4px);
}

.footer-social img {
    width: 24px;
    
}

/* ---------------------------- */
/*     CONTACT SECTION          */
/* ---------------------------- */

.footer-contact p,
.footer-contact a {
    font-size: 15px;
    color: #d1d5db;
}

.footer-contact strong {
    color: #ffffff;
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.15);
    margin: 20px 0;
}

/* ---------------------------- */
/*     NEWSLETTER               */
/* ---------------------------- */

.newsletter label {
    color: #ffffff;
    font-size: 14px;
    display: block;
    font-weight: 600;
    margin-bottom: 10px;
}

.newsletter input {
    width: 100%;
    padding: 20px 15px;
    border-radius: 25px;
    border: none;
    outline: none;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 14px;
}

.newsletter button {
    margin-top: 10px;
    width: 100%;
    padding: 12px;
    border-radius: 25px;
    background: #f59e0b;
    color: #ffffff;
    border: none;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.newsletter button:hover {
    background: #0ea570;
}

/* ---------------------------- */
/*     LINK LIST SECTIONS       */
/* ---------------------------- */

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links li a {
    color: #d1d5db;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links li a:hover {
    color: #10b981;
    padding-left: 5px;
}

/* ---------------------------- */
/*     FOOTER BOTTOM            */
/* ---------------------------- */

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
    margin-top: 40px;
    font-size: 14px;
}

.footer-bottom strong {
    color: #ffffff;
}

.footer-payment img {
    max-width: 100%;
    max-height: 35px;
}

.service-section {
    padding: 3% 20px;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

/* Border for all except the last card (Desktop only) */
@media (min-width: 992px) {
    .service-section .cards-des:not(:last-child) {
        border-right: 1px dashed red;
    }
}

/* Remove border on tablet/mobile */
@media (max-width: 991px) {
    .service-section .cards-des {
        border-right: none !important;
        border-bottom: 1px dashed red;
        padding-bottom: 20px;
        margin-bottom: 20px;
    }

    /* Remove bottom border on last card */
    .service-section .cards-des:last-child {
        border-bottom: none;
        margin-bottom: 0;
        padding-bottom: 0;
    }
}

/* Image circle */
.service-section .img-part {
    width: 100px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: white;
    border-radius: 50%;
    margin: 0 auto 15px auto;
}

/* Icon inside circle */
.service-section .img-part img {
    width: 50px;
}


/* Text responsiveness */
.service-section .cont-part h4 {
    font-size: 20px;
    font-weight: 700;
}

.service-section .cont-part p {
    font-size: 15px;
    color: #444;
}

/* Mobile font resizing */
@media (max-width: 480px) {
    .service-section .img-part {
        width: 80px;
        height: 80px;
    }

    .service-section .img-part img {
        width: 40px;
    }

    .service-section .cont-part h4 {
        font-size: 18px;
    }

    .service-section .cont-part p {
        font-size: 14px;
    }
}


