/* Cart link wrapper */
.my-cart-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: #e22686 !important;
    margin-top:5px;
}

/* Cart icon */
.my-cart-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.my-cart-icon svg {
    height: auto;
    width: 2em;
    fill: currentColor;
}

/* Cart count badge (Woo style) */
.my-cart-count {
    position: absolute;
    top: -4px;
    right: -8px;

    min-width: 18px;
    height: 18px;
    padding: 0 5px;

    background: #cc1818; /* Woo default red */
    color: #fff;

    font-size: 11px;
    font-weight: 600;
    line-height: 18px;
    text-align: center;

    border-radius: 50%;
    box-sizing: border-box;
}

/* Hover effect (subtle, Woo-like) */
.my-cart-link:hover .my-cart-icon svg {
    opacity: 0.85;
}

/* Hide badge when empty */
.my-cart-count:empty,
.my-cart-count[data-count="0"] {
    display: none;
}

.thank-you-container .wc-block-order-confirmation-totals .lty-instant-win-better-luck-message,
.thank-you-container .lty-order-instant-winners-wrapper .lty-order-instant-winners-heading{
    font-size: 17px !important;
    margin-bottom:20px;
}
.thank-you-container .wc-block-order-confirmation-totals .order-again a{
    border-radius: 10px !important;
    background-color: #e22686 !important;
    font-size: clamp(14px, 0.875rem + ((1vw - 3.2px) * 0.098), 15px)  !important;
    font-style: normal  !important;
    font-weight: 600  !important;
}
.thank-you-container .wc-block-order-confirmation-totals .order-again{
    margin-top:30px !important;
    margin-bottom:30px !important;
}
/* contact us page start */
.contact-sub-heading,.page-heading{
    font-family: "Oswald", Sans-serif;
}

.contact-us-left-column p,
.page-content-text, .page-content-text p{

    font-family: "Roboto", Sans-serif;
}
.sendMessageBtn{
    font-family: "Roboto", Sans-serif !important;
}

.customContactForm label{
    font-family: 'IBM Plex Sans', sans-serif;
}
@media (max-width: 768px) {
    .thank-you-container .wp-block-column{
        padding:10px !important;
    }
    .thank-you-container table tr .download-remaining,
    .thank-you-container table tr .download-expires{
        display:none !important;
    }
    .thank-you-container table tr th,
    .thank-you-container table tr td{
        word-break: initial !important;
        width: 100% !important;
    }
    .customContactForm .wpforms-one-half {
        width: 100% !important;
        float: none !important;
        margin-left: 0 !important;
    }
    .mob-app-hide{
        display: none;
    }
    .contact-us-main-div,.mob-fullwidth{
        width: 100% !important;
        padding: 0 !important;
    }
}
.content-link a{
    font-weight: 700;
}


/* contact us page end */


/* My Account page start */

/* My Account Sidebar */
.woocommerce-MyAccount-navigation {
    width: 250px;
    background: transparent;
    border-radius: 10px;
}

/* Sidebar Menu Items */
.woocommerce-MyAccount-navigation ul {
    list-style: none;
    padding: 0;
}

.woocommerce-MyAccount-navigation ul li a {
    display: block;
    padding: 12px;
    color: #69727d;
    background: #f9fafa;
    border-radius: 10px;
    text-decoration: none !important;
    text-align: left;
    /* border-width: 0; */
    /* border-style: solid; */
    font-size: 17px;
    font-weight: 500;
}

.woocommerce-MyAccount-navigation ul li a:hover{
    color: black;
}
.woocommerce-MyAccount-navigation ul li.is-active a {
    background: #E22686;
    color: #fff;
}

/* Content Section */
.woocommerce-MyAccount-content {
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border: 1px solid #d5d8dc;
    /*display: inline-table;*/
}
.woocommerce-MyAccount-content .woo-wallet-transactions-list{
    overflow:auto !important;
}
.woocommerce-MyAccount-navigation {
    float: left;
}

.woocommerce-account .woocommerce-MyAccount-navigation li{
    list-style: none;
    padding-top: 10px !important;
    padding-bottom: 10px !important;
}
.woocommerce-MyAccount-content a{
    color: #E22686 !important;
}
.woocommerce-MyAccount-navigation ul li a:focus {
    outline: none !important;
    box-shadow: none;
}

/* My Account page end */


/* countdown start */
.countdown-wrapper{
    width: 80% !important;
}
.countdown-wrapper .countdown-container {
    background: #E22685;
    color: white;
    padding: 18px;
    border-radius: 20px;
}

.countdown-wrapper .countdown-box {
    background: #01082E;
    padding: 10px;
    text-align: center;
    border-radius: 5px;
    min-width: 60px;
}

.countdown-wrapper .countdown-box span {
    display: block;
    font-size: 20px;
    font-weight: bold;
}

.countdown-wrapper .countdown-box small {
    font-size: 12px;
}

.countdown-wrapper .live-button {
    background: white;
    color: #002c77;
    padding: 10px 15px;
    text-decoration: none;
    font-weight: bold;
}
.countdown-wrapper .nextDrawtxt{
    color: #ffeb14;
}


@media (max-width: 768px) {
    .countdown-wrapper {
        width: 100% !important;
    }
    .countdown-wrapper .countdown-container {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .countdown-wrapper .countdown {
        flex-wrap: wrap;
        justify-content: center;
        gap: 5px;
    }

    .countdown-wrapper .countdown-box {
        min-width: 50px;
        padding: 8px;
    }

    .countdown-wrapper .countdown-box span {
        font-size: 16px;
    }

    .countdown-wrapper .countdown-box small {
        font-size: 10px;
    }

    .countdown-wrapper .live-button {
        display: block;
        margin: 10px auto;
        width: fit-content;
    }
}
/* countdown end */


/*Product listing*/

/*expandable wrapper*/
.expandable-description-wrapper {
    display: flex;
    flex-direction: row;
    gap: 16px;
    width: 100%; 
    max-width: 730px;
    margin-bottom: 30px;
    margin-top:0;
}
.expandable-description-wrapper .expandable-description-text a {
    color: #e22686;
}
.expandable-description-wrapper .expandable-description-text p {
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
    margin: 0;
    color:black;
}
.expandable-description-wrapper .expandable-description-text.open {
    max-height: 400px;
}
.expandable-description-wrapper .expandable-description-text {
    max-height: 78px;
    overflow: hidden;
    white-space: pre-line;
    position: relative;
    transition: max-height 0.5s ease-in;
    flex: 1;
}
.expandable-description-wrapper .descriptionOverlay {
    background: linear-gradient(transparent, #fff);
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    pointer-events: none;
}
.expandable-description-wrapper .toggle-link span{
    font-weight:600;
}
.expandable-description-wrapper .toggle-link{
  cursor: pointer;
  text-decoration: underline;
  align-self: flex-start;
  border:0;
  background:transparent;
}
@media screen and (max-width: 768px) {
    .expandable-description-wrapper {
        flex-direction: column;
        gap: 8px;
    }
}

/*expandable wraper finishes*/

/*Product listing*/

/* Filter Tabs */
.custom-product-filter {
    display: flex;
    gap: 10px;
    padding-bottom: 15px;
    margin-bottom:10px;
    overflow-x: auto;
    white-space: nowrap;
}

.custom-product-filter .filter-tab {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3px 13px;
    background: #fff;
    border: 1px solid #717171;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    color: rgb(113, 113, 113);
    flex-shrink: 0;
    
}
.custom-product-filter .filter-tab.empty-category {
    opacity: 0.5;
    background: #f0f0f0 !important;
    border: 1px solid #ddd !important;
}
.custom-product-filter .filter-tab.active {
    border: 1px solid #e6007e;
    color: #e6007e;
}
.custom-product-filter .filter-tab.active svg path[stroke]{
    stroke: #e6007e;
}
.custom-product-filter .filter-tab.active svg path[fill]{
    fill: #e6007e;
}
.no-competitions-message {
    text-align: center;
    font-size: 24px;
    color: #777;
    font-family: Staatliches,Staatliches Fallback;
    font-weight: 400;
    font-style: normal;
    line-height: 31px;
}

/* Mobile View Toggle */
.list-view-toggle {
    display: none;
    margin-bottom: 20px;
    gap: 10px;
    justify-content: space-between;
    align-items: center;
}

.list-view-toggle .view-toggle-btn {
    padding: 2px 8px;
    background: #fff;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.list-view-toggle .view-toggle-btn.active {
    color: #e6007e;
}

/* LIST VIEW STYLES */
.custom-product-grid.list-view {
    gap:30px;
}
.custom-product-grid.list-view .product-card {
    display: flex;
    flex-direction: row;
    padding: 0px;
    gap: 10px;
    width:100%;
    align-items: center;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    border: 1px solid #eaeaea;
}

.custom-product-grid.list-view .product-image {
    flex-shrink: 0;
    margin-bottom: 0;
    position: relative;
    width: 110px;
    height: 100%;
    border-radius: 0;
}
.custom-product-grid.list-view .product-image img {
    width: 110px;
    height: 100%;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.custom-product-grid.list-view .product-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 5px;
    padding-top:13px;
    gap: 8px;
}

.custom-product-grid.list-view .product-title {
    font-size: 14px !important;
    margin: 0 !important;
    line-height: 1.3;
    font-weight: 600;
}

.custom-product-grid.list-view .product-title a {
    color: #333;
    text-decoration: none;
    font-size: 14px;
}

.custom-product-grid.list-view .product-price {
    margin: 0 !important;
    font-size: 16px !important;
    color: #e6007e;
    font-weight: 700;
    display:flex;
    justify-content:space-between;
    gap:10px;
}

.custom-product-grid.list-view .woocommerce-Price-amount bdi {
    font-size: 16px;
}

.custom-product-grid.list-view .product-link {
    padding: 0 !important;
    font-size: 0 !important;
    margin: 0 !important;
    width: 30px !important;
    height: 30px !important;
    min-width: 30px !important;
    flex-shrink: 0;
    background-color: #000 !important;
    border-radius: 50% !important;
    position: relative;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-decoration: none !important;
    color: transparent !important;
    border:none !important;
    overflow: hidden;
}
/* Plus icon for list view */
.custom-product-grid.list-view .product-link::before,
.custom-product-grid.list-view .product-link::after {
    content: '';
    position: absolute;
    background-color: white;
    border-radius: 1px;
}

.custom-product-grid.list-view .product-link::before {
    width: 14px;
    height: 2.5px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.custom-product-grid.list-view .product-link::after {
    width: 2.5px;
    height: 14px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.custom-product-grid.list-view .draw-date-lable {
    font-size: 10px;
    padding: 4px 7px;
    top: -14px;
    left: 50%;
    transform: translateX(-20%);
    background: #000;
}

.custom-product-grid.list-view .competition-label,
.custom-product-grid.list-view .label-sold-out {
    font-size: 10px;
    padding: 2px 3px;
    left: 0px;
    border-top-left-radius: 0px;
    border-bottom-right-radius: 0px;
}

/* CARD VIEW STYLES */
.custom-product-grid .product-image img {
    border-radius: 10px;
    width: 100%;
    max-height: 200px !important;
    object-fit: cover !important;
}

.custom-product-grid .product-image {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.custom-product-grid .competition-label {
    background: #e6007e;
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    display: inline-block;
    position: absolute;
    bottom: 0;
    left: 0;
}

.custom-product-grid .label-sold-out {
    background: #e6007e;
    color: #fff;
    padding: 5px 10px;
    font-size: 22px;
    display: inline-block;
    position: absolute;
    TOP: 50%;
    left: 0;
    right: 0;
    transform: translate(0, -50%);
    text-align: center;
}

.custom-product-grid .product-title {
    font-size: 16px;
    font-weight: bold;
    margin: 10px 0;
}

.custom-product-grid .product-title a {
    text-decoration: none;
    color: black;
}

.custom-product-grid .product-price {
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    font-weight: bold;
    position: relative;
    text-align: center;
}

.custom-product-grid .add-to-cart {
    font-size: 13px;
    color: #ffffff !important;
    background-color: #E22686 !important;
    border: none;
    width: 100%;
    padding: 10px 2px;
    margin: 10px 10px;
    border-radius: 5px;
    text-align: center;
    display: inline-block;
    font-weight: 600;
    margin-left: 0;
    text-decoration: unset;
}

.custom-product-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    width: 100%;
    margin: auto;
}

.custom-product-grid .product-card {
    background: #fff;
    border-radius: 10px;
    padding: 15px;
    width: calc(33.33% - 20px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    position: relative;
}

.custom-product-grid .draw-date-lable {
    background: #fff;
    color: #ffffff;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    display: inline-block;
    position: absolute;
    z-index: 2;
    left: 50%;
    transform: translateX(-50%);
    top: -7px;
    box-shadow: rgba(0, 0, 0, 0.17) 0px -23px 25px 0px inset, rgba(0, 0, 0, 0.15) 0px -36px 30px 0px inset, rgba(0, 0, 0, 0.1) 0px -79px 40px 0px inset, rgba(0, 0, 0, 0.06) 0px 2px 1px, rgba(0, 0, 0, 0.09) 0px 4px 2px, rgba(0, 0, 0, 0.09) 0px 8px 4px, rgba(0, 0, 0, 0.09) 0px 16px 8px, rgba(0, 0, 0, 0.09) 0px 32px 16px;
}
@media screen and (max-width: 768px) {
    .list-view-toggle {
        display: flex;
    }
    .product-listing-page{
        padding: 5px !important;
    }
    .custom-product-grid:not(.list-view) .product-card {
        width: calc(50% - 15px);
    }
    .custom-product-grid.list-view .product-title {
        font-size: 13px !important;
    }
}

@media screen and (max-width: 480px) {
    .custom-product-grid:not(.list-view) .product-card {
        width:100%;
    }
}

@media screen and (min-width: 769px) {
    .custom-product-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .custom-product-grid .product-card {
        width: 100%;
    }
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.custom-product-grid .product-card {
    transition: opacity 0.3s ease, transform 0.3s ease;
}
.competitions-count {
    color: #666;
    font-size: 12px;
    white-space: nowrap;
    margin-left: 5px;
}


/*product listing end*/
