@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    color: #111;
    font-family: 'Inter', Arial, Helvetica, sans-serif;
}

body.loader-active {
    overflow: hidden;
}

.site-loader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: grid;
    place-items: center;
    background:
        radial-gradient(circle at 30% 25%, rgba(222, 179, 41, .35), transparent 34%),
        linear-gradient(316.77deg, #deb329 1.6%, #368846 99.13%);
    color: #fff;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .22s ease, visibility .22s ease;
}

body.loader-active .site-loader {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.site-loader.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-card {
    position: relative;
    display: grid;
    place-items: center;
    width: min(280px, 82vw);
    min-height: 240px;
    text-align: center;
}

.loader-card img {
    position: relative;
    z-index: 2;
    width: 112px;
    height: auto;
    filter: brightness(0) invert(1);
    animation: loaderLogo 1.8s ease-in-out infinite;
}

.loader-orbit {
    position: absolute;
    inset: 24px;
    display: grid;
    place-items: center;
}

.loader-orbit::before {
    content: "";
    width: 148px;
    height: 148px;
    border: 2px solid rgba(255, 255, 255, .32);
    border-top-color: #fff;
    border-radius: 50%;
    animation: loaderSpin 1.1s linear infinite;
}

.loader-orbit span {
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 22px rgba(255, 255, 255, .75);
    animation: loaderPulse 1.4s ease-in-out infinite;
}

.loader-orbit span:nth-child(1) {
    transform: translate(-82px, -18px);
}

.loader-orbit span:nth-child(2) {
    transform: translate(78px, 14px);
    animation-delay: .18s;
}

.loader-orbit span:nth-child(3) {
    transform: translate(0, 84px);
    animation-delay: .36s;
}

@keyframes loaderSpin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes loaderPulse {
    0%, 100% {
        opacity: .45;
        scale: .72;
    }

    50% {
        opacity: 1;
        scale: 1;
    }
}

@keyframes loaderLogo {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

@media (prefers-reduced-motion: reduce) {
    .loader-card img,
    .loader-orbit::before,
    .loader-orbit span {
        animation: none;
    }
}

@media (max-width: 575px) {
    .loader-card img {
        width: 92px;
    }

    .loader-orbit::before {
        width: 124px;
        height: 124px;
    }

}
section {
    margin: 50px 0px;
}
 
/* All Links  */
a {
    color: inherit;
    text-decoration: none;
}
 .btn-1 {
    background: #fff;
    color: #F80300;
    padding: 10px 30px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 700;
    border: none;
 }
 .btn-1:hover{
    background: #F80300;
    color: #fff;
    transition: background-color 0.3s ease, color 0.3s ease;
 }
  .btn-2 {
    background: #F80300;
    color: #fff;
    padding: 10px 30px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 700;
    border: none;
    display: inline-block;
      border:1px solid #F80300 ;
 }
 .btn-2:hover{
    background: #fff;
    color: #F80300;
    transition: background-color 0.3s ease, color 0.3s ease;
    border:1px solid #F80300 ;
 }
/* End  */


.site-header {
    background: #fff;
    border-bottom: 1px solid #e8e8e8;
}

.header-inner {
    padding: 15px 0px 0px;
    gap: 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-mark {
    width: max-content;
    display: grid;
    gap: 6px;
}

.crown {
    width: 34px;
    height: 20px;
    color: #d7b12a;
    font-size: 11px;
    font-weight: 800;
    line-height: 20px;
    text-align: center;
    transform: rotate(-18deg);
}

.brand-name {
    font-size: 38px;
    line-height: .85;
    font-weight: 800;
    letter-spacing: 8px;
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    color: #343434;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.header-actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    align-items: center;
}
.hero-section {
    background: linear-gradient(105.32deg, #368846 7.01%, #DEB329 100.78%);
    /* padding: 50px 0px; */
    margin-top: 0;
}

.hero-kicker {
    margin: 0 0 12px;
    color: rgba(255,255,255,.68);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}

.hero-copy {
    align-self: center;
    padding: 20px 0px;
}

.hero-copy h1 {
    margin: 0;
    color: #fff;
    font-size: 56px;
    line-height: normal;
    font-weight: 700;
    letter-spacing: 0;
}
.hero-dots {
    display: grid;
    gap: 13px;
    margin-top: 76px;
}
.hero-dots span {
    width: 10px;
    height: 10px;
    border: 2px solid #fff;
    border-radius: 50%;
}
.hat {
    top: 10px;
    left: 50%;
    z-index: 4;
}
.neck {
    height: 34px;
}
.hero-note {
    align-self: center;
    color: #fff;
    padding: 0 0 14px 18px;
}
.hero-note p {
    max-width: 250px;
    margin: 0 0 18px;
    font-size: 17px;
    font-weight: 500;
    line-height: normal;
}
.promo-card {
    align-items: center;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    padding: 20px 20px 0;
}
.promo-card-one {
    background: linear-gradient(100.05deg, #ECECEC 0%, #DCB329 100%);
}

.promo-card-two {
    background: linear-gradient(99.83deg, #F5F5F5 0%, #368846 99.67%);
}
.promo-card span {
    font-size: 15px;
    font-weight: 500;
    color: #2D2D2D;
}
.promo-card h2 {
    margin: 11px 0 26px;
    font-size: 32px;
    line-height: normal;
    font-weight: 700;
}
.yellow-product {
    background: #f0be20;
    color: #18803e;
    border-radius: 28px 28px 0 0;
}
.service-row {
    margin-top: 22px;
}
.service-row article {
    min-height: 74px;
    padding: 18px 18px 18px 68px;
    background: #fff;
    border: 1px solid #e5e5e5;
    position: relative;
}
.service-row article::before {
    content: "";
    width: 34px;
    height: 34px;
    background: #ef1c14;
    border-radius: 50%;
    position: absolute;
    left: 20px;
    top: 18px;
}
.service-row strong {
    display: block;
    font-size: 13px;
    margin-bottom: 5px;
}
.service-row p {
    margin: 0;
    color: #777;
    font-size: 11px;
}
.section-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 22px;
}
.section-heading h2 {
    margin: 0;
    color: #FF3131;
    font-size: 24px;
    font-weight: 700;
}

.product-tabs {
    display: flex;
    gap: 26px;
}

.product-tabs button,
.product-tabs a {
    border: 0;
    background: transparent;
    color: #000;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.product-tabs .active {
    color: #000;
    text-decoration: underline;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.product-card {
    background: #fff;
    border: 1px solid #e2e2e2;
    position: relative;
    box-shadow: 0px 4px 8.4px 2px #0000001C;
    overflow: hidden;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.product-card:hover {
    border-color: rgba(248, 3, 0, .32);
    box-shadow: 0 10px 22px rgba(0, 0, 0, .12);
}

.product-card.is-out-of-stock {
    border-color: #d8d8d8;
}

.product-card.is-out-of-stock .product-image img,
.product-card.is-out-of-stock .person-head,
.product-card.is-out-of-stock .product-shirt {
    opacity: .48;
    filter: grayscale(1);
}

.sale-badge {
    min-width: 53px;
    height: 19px;
    padding: 0 7px;
    background: #202020;
    color: #fff;
    font-size: 9px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 20px;
    left: 0px;
    z-index: 2;
}

.out-of-stock-badge {
    min-width: 104px;
    background: #b30503;
}

.product-image {
    min-height: 250px;
    background: #efefef;
    padding-top: 38px;
    display: grid;
    justify-items: center;
    align-content: start;
}

.product-image-disabled {
    cursor: not-allowed;
}

.product-image img {
    width: 80%;
    max-height: 220px;
    object-fit: contain;
}

.product-image.women {
    background: #f3f3f3;
}

.person-head {
    width: 48px;
    height: 54px;
    margin-bottom: -6px;
}

.product-shirt {
    width: 112px;
    height: 130px;
    background: #111;
    clip-path: polygon(20% 0, 80% 0, 100% 22%, 84% 34%, 84% 100%, 16% 100%, 16% 34%, 0 22%);
    color: #d6ba28;
    display: grid;
    place-items: center;
    text-align: center;
    font-family: Georgia, serif;
    font-style: italic;
    font-size: 16px;
    line-height: .85;
}

.product-image.yellow .product-shirt {
    background: #f0be20;
    color: #18803e;
}

.product-info {
    padding: 13px 14px 16px;
}

.product-info h3 {
    margin: 0 0 6px;
    font-size: 18px;
    font-weight: 700;
    min-height: 44px;
    line-height: 1.22;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.product-info h3 a,
.product-info h3 span {
    display: inherit;
    -webkit-box-orient: inherit;
    -webkit-line-clamp: inherit;
    overflow: inherit;
}

.product-info p {
      margin: 0 0 8px;
    color: #000;
    font-size: 13px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2; /* only 2 lines */
    overflow: hidden;
}

.product-info strong {
    color: #000;
    font-size: 18px;
}

.add-cart-form {
    margin-top: 14px;
}

.add-cart-form .brand-btn {
    width: 100%;
    border: 0;
    display: none;
}

.add-cart-form .brand-btn:disabled,
.wishlist-btn:disabled {
    cursor: not-allowed;
    opacity: .65;
}

.search-results-note {
    margin: -10px 0 18px;
    color: #5f5f5f;
    font-weight: 700;
}

.product-grid-list {
    transition: opacity 0.16s ease;
}

.product-load-more {
    margin-top: 8px;
}

.see-more-products {
    min-width: 126px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.see-more-products.is-loading {
    pointer-events: none;
    opacity: .8;
}

.load-spinner {
    display: none;
    width: 15px;
    height: 15px;
    border: 2px solid rgba(255, 255, 255, .45);
    border-top-color: #fff;
    border-radius: 50%;
    animation: productSpin 0.7s linear infinite;
}

.see-more-products.is-loading .load-spinner {
    display: inline-block;
}

.product-load-status {
    min-height: 20px;
    margin: 10px 0 0;
    color: #555;
    font-size: 13px;
    font-weight: 700;
}

.product-load-status.is-error {
    color: #b30503;
}

@keyframes productSpin {
    to {
        transform: rotate(360deg);
    }
}

.cart-section,
.checkout-section {
    padding: 56px 0 72px;
}

.empty-state {
    background: #fff;
    border: 1px solid #e5e5e5;
    padding: 34px;
    text-align: center;
}

.empty-state h1 {
    margin: 0 0 10px;
    font-size: 32px;
    font-weight: 900;
}

.empty-state p {
    margin: 0 0 22px;
    color: #666;
}

.error-section {
    padding: 90px 0;
    background: #f6f6f6;
}

.error-card {
    max-width: 720px;
    margin: 0 auto;
    padding: 46px;
    border: 1px solid #e3e3e3;
    background: #fff;
    text-align: center;
    box-shadow: 0 18px 40px rgba(0, 0, 0, .06);
}

.error-card span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 78px;
    min-height: 42px;
    margin-bottom: 18px;
    background: #111;
    color: #fff;
    font-weight: 900;
}

.error-card h1 {
    margin: 0 0 12px;
    font-size: 42px;
    font-weight: 900;
}

.error-card p {
    max-width: 540px;
    margin: 0 auto 24px;
    color: #606060;
    font-weight: 600;
}

.error-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.cart-items {
    display: grid;
    gap: 14px;
}

.cart-item {
    background: #fff;
    border: 1px solid #e5e5e5;
    padding: 16px;
    display: grid;
    grid-template-columns: 86px 1fr 120px 100px auto;
    align-items: center;
    gap: 16px;
}

.cart-item-img {
    width: 86px;
    height: 86px;
    background: #f1f1f1;
    display: grid;
    place-items: center;
}

.cart-item-img img {
    max-width: 76px;
    max-height: 76px;
    object-fit: contain;
}

.cart-item-info h3 {
    margin: 0 0 6px;
    font-size: 16px;
    font-weight: 900;
}

.cart-item-info p {
    margin: 0;
    color: #777;
}

.cart-qty-form {
    display: flex;
    gap: 8px;
}

.cart-qty-form input {
    width: 58px;
    border: 1px solid #dcdcdc;
    padding: 8px;
}

.cart-qty-form button,
.cart-remove,
.cart-clear {
    border: 0;
    background: transparent;
    color: #ef1c14;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.cart-summary {
    background: #fff;
    border: 1px solid #e5e5e5;
    padding: 24px;
}

.cart-summary h3 {
    margin: 0 0 18px;
    font-size: 22px;
    font-weight: 900;
}

.cart-summary div {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 12px 0;
    border-bottom: 1px solid #efefef;
}

.cart-summary .cart-total {
    border-bottom: 0;
    font-size: 18px;
}

.cart-summary .brand-btn {
    width: 100%;
    margin-top: 18px;
}

.cart-sync-status {
    min-height: 20px;
    margin: 12px 0 0;
    color: #555;
    font-size: 12px;
    font-weight: 800;
    text-align: center;
}

.cart-sync-status.is-error {
    color: #b30503;
}

.cart-clear {
    width: 100%;
    margin-top: 14px;
}

.checkout-form {
    background: #fff;
    border: 1px solid #e5e5e5;
    padding: 28px;
    display: grid;
    gap: 10px;
}

.checkout-form label {
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.checkout-form input,
.checkout-form textarea,
.checkout-form select {
    width: 100%;
    border: 1px solid #dcdcdc;
    background: #f8f8f8;
    padding: 12px 14px;
    outline: none;
}

.checkout-form input:focus,
.checkout-form textarea:focus,
.checkout-form select:focus {
    border-color: #368846;
    background: #fff;
}

.checkout-form small {
    color: #ef1c14;
}

.checkout-form .brand-btn {
    border: 0;
    margin-top: 12px;
}

.bank-transfer-box {
    display: grid;
    gap: 10px;
    margin: 12px 0 6px;
    padding: 16px;
    border: 1px solid rgba(54, 136, 70, .25);
    border-radius: 8px;
    background: rgba(54, 136, 70, .07);
}

.bank-transfer-box h3 {
    margin: 0;
    font-size: 17px;
    font-weight: 800;
}

.bank-transfer-box p {
    margin: 0;
    color: #555;
    font-size: 13px;
}

.bank-transfer-box div {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    border-top: 1px solid rgba(54, 136, 70, .18);
    padding-top: 10px;
}

.bank-transfer-box span {
    color: #555;
}

.order-detail-card {
    max-width: 720px;
    margin: 28px auto 0;
}

.cart-dropdown-wrapper {
    position: relative;
}

.cart-dropdown {
    width: 330px;
    max-height: 460px;
    overflow-y: auto;
    background: #fff;
    border: 1px solid #e5e5e5;
    box-shadow: 0 16px 40px rgba(0, 0, 0, .14);
    padding: 16px;
    position: absolute;
    top: calc(100% + 14px);
    right: 0;
    z-index: 50;
}

.cart-dropdown-item {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid #efefef;
}

.cart-dropdown-item img {
    width: 58px;
    height: 58px;
    object-fit: contain;
    background: #f6f6f6;
}

.cart-dropdown-item strong,
.cart-dropdown-item span,
.cart-dropdown-item em {
    display: block;
}

.cart-dropdown-item strong {
    font-size: 13px;
}

.cart-dropdown-item span {
    color: #777;
    font-size: 12px;
    margin: 4px 0;
}

.cart-dropdown-item em {
    color: #dcb329;
    font-style: normal;
    font-weight: 900;
}

.cart-dropdown-empty {
    margin: 0 0 12px;
    color: #777;
    font-size: 13px;
}

.cart-dropdown .brand-btn,
.cart-dropdown .btn-2 {
    width: 100%;
    margin-top: 12px;
    text-align: center;
}

.product-detail-section,
.product-reviews-section,
.related-products-section {
    padding: 56px 0;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: minmax(280px, 420px) 1fr;
    gap: 56px;
    align-items: start;
}

.product-main-image {
    min-height: 410px;
    background: #ededed;
    display: grid;
    place-items: center;
    padding: 28px;
    overflow: hidden;
}

.product-main-image img {
    max-width: 100%;
    max-height: 360px;
    object-fit: contain;
    transition: transform 0.28s ease;
    cursor: zoom-in;
}

.product-main-image:hover img {
    transform: scale(1.16);
}

.product-thumbs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 16px;
}

.product-thumb {
    border: 1px solid #e2e2e2;
    background: #f7f7f7;
    padding: 8px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.product-thumb:hover {
    border-color: #ef1c14;
    box-shadow: 0 8px 18px rgba(0, 0, 0, .08);
    transform: translateY(-1px);
}

.product-thumb.active {
    border-color: #ef1c14;
    box-shadow: inset 0 -3px 0 #ef1c14;
}

.product-thumb img {
    width: 100%;
    height: 64px;
    object-fit: contain;
}

.product-detail-content h1 {
    margin: 8px 0 12px;
    font-size: 42px;
    font-weight: 900;
}

.product-detail-content p {
    max-width: 620px;
    color: #666;
    line-height: 1.7;
}

.product-rating {
    color: #dcb329;
    display: flex;
    gap: 3px;
    margin-bottom: 12px;
}

.product-rating .muted {
    color: #d9d9d9;
}

.product-detail-price {
    color: #368846;
    display: block;
    font-size: 30px;
    margin: 22px 0;
}

.product-purchase-form {
    display: grid;
    gap: 18px;
}

.option-group > label {
    display: block;
    margin-bottom: 8px;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}
.color-options,
.size-options,
.product-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.color-choice input,
.size-choice input {
    position: absolute;
    opacity: 0;
}
.color-choice span,
.size-choice span {
    min-width: 44px;
    min-height: 38px;
    border: 1px solid #dcdcdc;
    background: #fff;
    display: inline-grid;
    place-items: center;
    padding: 0 14px;
    font-size: 12px;
    font-weight: 900;
    cursor: pointer;
}
.color-choice input:checked + span,
.size-choice input:checked + span {
    border-color: #ef1c14;
    color: #ef1c14;
}
.quantity-control {
    display: inline-flex;
    border: 1px solid #dcdcdc;
}

.quantity-control button,
.quantity-control input {
    width: 44px;
    height: 42px;
    border: 0;
    background: #fff;
    text-align: center;
}

.quantity-control button {
    font-weight: 900;
}

.product-actions button {
    border: 0;
}

.product-review {
    border-top: 1px solid #e5e5e5;
    padding: 22px 0;
}

.product-review p {
    color: #666;
    margin: 0 0 10px;
}

.related-products-slider {
    padding-bottom: 58px;
}

.related-products-slider .swiper-slide {
    height: auto;
}

.related-slider-controls {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
}

.related-slider-prev,
.related-slider-next {
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    background: #111;
    color: #fff;
    font-size: 28px;
    line-height: 1;
}

.load-more {
    width: max-content;
    margin: 34px auto 0;
}

@media (max-width: 900px) {
    .promo-wrap,
    .service-row {
        grid-template-columns: 1fr;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cart-item {
        grid-template-columns: 72px 1fr;
    }

    .cart-item > strong,
    .cart-item form {
        grid-column: 2;
    }

    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }
}

@media (max-width: 560px) {

    .promo-card {
        grid-template-columns: 1fr 110px;
        padding: 18px;
    }

    .promo-card h2 {
        font-size: 16px;
    }

    .mini-product {
        width: 98px;
        height: 118px;
    }

    .section-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .product-grid {
        gap: 14px;
    }

    .product-image {
        min-height: 210px;
    }
}


.queen-hero {
    background: linear-gradient(99.83deg, #F5F5F5 0%, #368846 99.67%);
    color: #111;
}

.brand-btn {
    min-height: 40px;
    padding: 0 22px;
    background: #ef1c14;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.collection-showcase {
    min-height: 320px;
    display: grid;
    grid-template-columns: 190px 1fr;
    align-items: center;
    justify-content: end;
    gap: 24px;
}

.queen-showcase {
    color: #111;
}
.showcase-shirt {
    width: 190px;
    height: 230px;
    clip-path: polygon(20% 0, 80% 0, 100% 22%, 84% 34%, 84% 100%, 16% 100%, 16% 34%, 0 22%);
    display: grid;
    place-items: center;
    text-align: center;
    font-family: Georgia, serif;
    font-size: 32px;
    font-style: italic;
    font-weight: 900;
    line-height: .85;
}

.showcase-card,
.collection-card,
.showcase-card {
    max-width: 260px;
    padding: 24px;
    color: #111;
}

.showcase-card strong {
    display: block;
    margin-bottom: 8px;
    font-size: 18px;
    font-weight: 900;
}

.showcase-card p {
    margin: 0;
    color: #666;
    font-size: 13px;
    line-height: 1.6;
}

.collection-section{
    padding: 54px 0 70px;
}

.collection-icon {
    width: 74px;
    height: 82px;
    margin-bottom: 22px;
    clip-path: polygon(20% 0, 80% 0, 100% 22%, 84% 34%, 84% 100%, 16% 100%, 16% 34%, 0 22%);
    display: grid;
    place-items: center;
    font-weight: 900;
}

.green-product {
    background: #368846;
    color: #fff;
}

.gold-product {
    background: #dcb329;
    color: #111;
}

@media (max-width: 900px) {
    .collection-hero {
        padding: 56px 0;
    }

    .collection-hero h1
    {
        font-size: 40px;
    }

    .collection-showcase {
        grid-template-columns: 1fr;
        justify-items: start;
        margin-top: 34px;
    }
}

@media (max-width: 560px) {
    .collection-hero h1 {
        font-size: 34px;
    }

    .showcase-shirt {
        width: 150px;
        height: 185px;
    }
}

.contact-hero {
    padding: 82px 0;
    color: #fff;
    background: linear-gradient(105.32deg, #368846 7.01%, #DEB329 100.78%);
}

.contact-hero h1 {
    max-width: 560px;
    margin: 0 0 18px;
    font-size: 56px;
    line-height: 1;
    font-weight: 900;
}

.contact-hero p {
    max-width: 520px;
    margin: 0 0 24px;
    font-size: 16px;
    line-height: 1.7;
    font-weight: 600;
}
.contact-section {
    padding: 54px 0 70px;
}
.contact-info-panel {
    display: grid;
    gap: 14px;
}
.contact-info-panel article,
.contact-form,
.contact-side-card {
    background: #fff;
    border: 1px solid #e5e5e5;
}
.contact-info-panel article {
    padding: 20px 24px;
    color: #111;
}
.contact-info-panel span {
    display: block;
    margin-bottom: 6px;
    color: #ef1c14;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}
.contact-info-panel strong {
    font-size: 18px;
    font-weight: 900;
}
.contact-form,
.contact-side-card {
    height: 100%;
    padding: 30px;
}
.contact-form label {
    display: block;
    margin-bottom: 8px;
    color: #111;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}
.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid #dcdcdc;
    background: #f8f8f8;
    color: #111;
    padding: 13px 14px;
    font: inherit;
    outline: none;
}
.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #368846;
    background: #fff;
}
.contact-side-card h2 {
    margin: 0 0 12px;
    font-size: 28px;
    font-weight: 900;
}
.contact-side-card p {
    margin: 0 0 24px;
    color: #666;
    line-height: 1.7;
}
.contact-mini-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}
.contact-mini-grid span {
    min-height: 48px;
    background: #f2f2f2;
    display: grid;
    place-items: center;
    color: #368846;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}
@media (max-width: 900px) {
    .contact-hero {
        padding: 56px 0;
    }

    .contact-hero h1 {
        font-size: 40px;
    }

    .contact-info-panel {
        margin-top: 28px;
    }
}
@media (max-width: 560px) {
    .contact-hero h1 {
        font-size: 34px;
    }
    .contact-form,
    .contact-side-card {
        padding: 22px;
    }
}
.site-footer {
    color: #fff;
    background: linear-gradient(316.77deg, #DEB329 1.6%, #368846 99.13%);
}
.footer-main {
    /* padding: 48px 0 34px; */
}
.footer-brand img {
    width: 92px;
    height: auto;
    margin-bottom: 28px;
    filter: brightness(0) invert(1);
}
.footer-brand p {
    margin: 0;
    max-width: 600px;
    font-size: 16px;
    line-height: 1.75;
    font-weight: 500;
}
.footer-links h2,
.footer-contact h2 {
    margin: 0 0 18px;
    font-size: 18px;
    font-weight: 700;
}
.footer-links {
    display: grid;
    gap: 14px;
}
.footer-links a,
.footer-contact a,
.footer-contact p,
.footer-bottom a,
.footer-bottom span {
    color: #fff;
    font-size: 14px;
    /* font-weight: 600; */
}
.footer-contact article {
    margin-bottom: 18px;
}
.footer-contact p {
    margin: 0;
}
.footer-socials {
    display: flex;
    align-items: center;
    gap: 14px;
}
.footer-socials a {
    width: 18px;
    height: 18px;
    display: inline-grid;
    place-items: center;
    color: #fff;
    font-size: 11px;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
}
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .35);
    padding: 18px 0 24px;
    margin-bottom: 0;
}
.footer-bottom p {
    margin: 0 0 8px;
    color: #fff;
    font-size: 14px;
    font-weight: 900;
}
.footer-bottom .very-bottom-footer {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    flex-direction: column;
}
.footer-bottom .very-bottom-footer .power-text  {
  color:#fff;
  font-size: 16px;
}

.footer-bottom .very-bottom-footer .last-line a{
    font-size: 14px;
}
@media (max-width: 767px) {
    .footer-main {
        padding: 36px 0 28px;
    }

    .footer-brand img {
        margin-bottom: 18px;
    }
}
/* Countdown Timer section */
.countdown-banner-section {
    background-color: #ffffff; 
    width: 100%;
}
/* Styled Bootstrap's .row to inherit your original card styles */
.countdown-banner-section .row {
    background-color: #f5f5f5;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    align-items: center;
    padding: 20px;
}
.countdown-banner-section .right-image-column {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    align-self: flex-end; 
}
.countdown-banner-section .right-image-column img {
    display: block;
    max-width: 100%;
    height: auto;
    object-fit: contain;
}
.countdown-banner-section .banner-tag {
    color: #F80300;
    font-size: 20px;
    font-weight: 400;
    display: block;
    margin-bottom: 12px;
    letter-spacing: normal;
}
.countdown-banner-section .moment-heading {
    color: #2D2D2D;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.18;
    margin: 0;
    text-align: center;
    text-transform: uppercase;
}

.countdown-banner-section .moment-heading span {
    display: inline;
}

.countdown-banner-section .moment-highlight {
    color: #2D2D2D;
}

.countdown-banner-section .moment-subheading {
    color: #368846;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
    margin: 6px 0 0;
    text-align: end;
    padding-right: 53px;
}

.countdown-banner-section .timer-wrapper {
    display: flex;
    align-items: flex-start;
    margin-bottom: 35px;
    flex-wrap: nowrap; 
}

.countdown-banner-section .time-block {
    text-align: center;
    min-width: 65px;
}

.countdown-banner-section .time-num {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: #2D2D2D;
    line-height: normal;
    font-variant-numeric: tabular-nums; 
}

.countdown-banner-section .time-label {
    display: block;
    font-size: 10px;
    color: #2D2D2D;
    font-weight: 600;
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: normal;
}

.countdown-banner-section .time-divider {
    font-size: 32px;
    font-weight: 700;
    color: #2D2D2D;
    line-height: normal;
    margin: 0 8px;
    position: relative;
    top: -2px;
}

.countdown-banner-section .btn-shop-now {
    display: inline-flex;
    align-items: center;
    background-color: #F80300;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    padding: 14px 28px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.countdown-banner-section .btn-shop-now i {
    margin-left: 10px;
    font-size: 12px;
}

.countdown-banner-section .btn-shop-now:hover {
    background-color: #d61810;
}

/* Media Queries */
@media (max-width: 991px) {
    .countdown-banner-section .moment-heading {
        font-size: 34px;
    }
    .countdown-banner-section .moment-subheading {
        font-size: 24px;
    }
    .countdown-banner-section .banner-content {
        padding-left: 40px;
    }
}

@media (max-width: 767px) {
    .countdown-banner-section .banner-content {
        text-align: center;
        padding: 40px 20px;
    }
    .countdown-banner-section .moment-heading {
        font-size: 28px;
    }
    .countdown-banner-section .moment-subheading {
        font-size: 20px;
    }
    .countdown-banner-section .timer-wrapper {
        justify-content: center;
    }
    .countdown-banner-section .right-image-column {
        justify-content: center;
    }
}
/* End */
/* Features Section */
.features {
  /* padding: 40px 20px; */
  font-family: Arial, sans-serif;
  display: none;
}
.features .feature-box {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  border: 2px solid #D9D9D9;
  background: #fff;
}
.features .icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #e60000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.features .text h3 {
  font-size: 18px;
  color: #000;
  margin-bottom: 4px;
  font-weight: 700;
}
.features .text p {
  font-size: 13px;
  color: #000;
  margin-bottom: 0;
}
/* end */
/* Site-wide responsive polish */
@media screen and (max-width: 992px) {
    body {
        overflow-x: hidden;
    }
    .container {
        max-width: 100%;
        padding-left: 18px;
        padding-right: 18px;
    }
    .promo-card {
        min-height: 210px;
        margin-bottom: 18px;
    }

    .promo-card h2 {
        font-size: clamp(20px, 5vw, 30px);
    }

    .promo-card .product-img img {
        max-height: 180px;
        object-fit: contain;
    }

    .features .row {
        display: grid;
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .features .col {
        width: 100%;
    }

    .features .feature-box {
        min-height: 86px;
    }

    .section-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
    }

    .section-heading h2 {
        font-size: 22px;
    }

    .product-tabs {
        width: 100%;
        overflow-x: auto;
        gap: 18px;
        padding-bottom: 4px;
        scrollbar-width: none;
    }

    .product-tabs::-webkit-scrollbar {
        display: none;
    }
    .product-tabs a,
    .product-tabs button {
        white-space: nowrap;
    }

    .products-section .col-md-3,
    .collection-section .col-md-3 {
        width: 50%;
    }

    .product-card {
        height: 100%;
    }

    .product-image {
        min-height: 220px;
        padding-top: 24px;
    }

    .product-image img {
        max-height: 190px;
    }

    .countdown-banner-section .row {
        border-radius: 18px;
        padding: 24px 14px;
        text-align: center;
    }

    .countdown-banner-section .banner-content {
        padding: 18px 0 10px;
    }

    .countdown-banner-section .timer-wrapper {
        justify-content: center;
        gap: 4px;
        flex-wrap: wrap;
    }

    .countdown-banner-section .right-image-column {
        justify-content: center;
        margin-top: 20px;
    }

    .countdown-banner-section .right-image-column img {
        max-height: 360px;
    }

    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .product-main-image {
        min-height: 320px;
    }

    .product-main-image img {
        max-height: 280px;
    }

    .product-detail-content h1 {
        font-size: clamp(30px, 8vw, 42px);
    }

    .product-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .product-actions .btn-2,
    .product-actions .brand-btn {
        width: 100%;
        text-align: center;
    }

    .product-thumbs {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .product-review {
        padding: 18px 0;
    }

    .related-products-section,
    .related-products-slider {
        overflow: hidden;
    }

    .cart-item {
        grid-template-columns: 82px 1fr;
        gap: 12px;
    }

    .cart-item > strong,
    .cart-item form {
        grid-column: 2;
    }

    .cart-qty-form {
        flex-wrap: wrap;
    }

    .cart-summary {
        margin-top: 6px;
    }

    .checkout-form,
    .cart-summary,
    .empty-state,
    .contact-form,
    .contact-side-card {
        padding: 22px;
    }

    .contact-hero {
        padding: 58px 0;
    }

    .contact-hero h1 {
        font-size: clamp(34px, 8vw, 48px);
    }

    .contact-info-panel {
        margin-top: 24px;
    }

    .site-footer {
        text-align: center;
    }

    .footer-brand p {
        margin-left: auto;
        margin-right: auto;
        max-width: 520px;
    }

    .footer-links,
    .footer-contact {
        justify-items: center;
    }

    .footer-socials {
        justify-content: center;
    }
}

@media screen and (max-width: 576px) {
    .container {
        padding-left: 14px;
        padding-right: 14px;
    }

    .promo-card {
        padding: 18px 14px 0;
    }

    .promo-card .product-img {
        max-width: 42%;
    }

    .features .feature-box {
        padding: 16px;
    }

    .products-section .col-md-3,
    .collection-section .col-md-3 {
        width: 100%;
    }

    .product-image {
        min-height: 240px;
    }

    .product-info h3 {
        font-size: 15px;
    }

    .product-info p {
        font-size: 12px;
    }

    .countdown-banner-section .time-block {
        min-width: 54px;
    }

    .countdown-banner-section .time-num,
    .countdown-banner-section .time-divider {
        font-size: 24px;
    }

    .product-actions {
        grid-template-columns: 1fr;
    }

    .color-options,
    .size-options {
        gap: 8px;
    }

    .cart-item {
        grid-template-columns: 64px 1fr;
        padding: 12px;
    }

    .cart-item-img {
        width: 64px;
        height: 64px;
    }

    .cart-item-img img {
        max-width: 56px;
        max-height: 56px;
    }

    .checkout-form,
    .cart-summary,
    .empty-state,
    .contact-form,
    .contact-side-card {
        padding: 18px;
    }

}
/* Haris_dev */
.wishlist-btn {
    top: 15px;
    right: 15px;
    z-index: 10;
    width: 36px;
    height: 36px;
    border: 0;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #ffffff;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
}
.wishlist-btn:hover {
    background: #ffffff;
    color: #ff3b30; 
}
.product-rating {
    margin-top: 4px;
    display: flex;
    gap: 3px;
    font-size: 0.85rem;
}
/* end */
