:root {
    --pdp-dark: #111111;
    --pdp-accent: #2d5a1b;
    --pdp-accent-dark: #234813;
    --pdp-gold: #ff9712;
    --pdp-red: #ff0707;
    --pdp-red-dark: #b30101;
    --pdp-bg: #f8f8f8;
    --pdp-white: #ffffff;
    --pdp-cream: #f4f1ea;
    --pdp-border: #ececec;
    --pdp-border-soft: #e3e0e0;
    --pdp-muted: #888888;
    --pdp-text: #434141;
    --pdp-accent-light: #3d7a1a;
    --pdp-empty-bg: #fdf9f2;
    --pdp-empty-border: #d8cbb6;
    --pdp-empty-heading: #573e19;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    background: var(--pdp-bg);
}

header {
    width: 100%;
    background: var(--pdp-white);
    border-bottom: 1px solid var(--pdp-border);
}

a {
    text-decoration: none !important;
    color: inherit !important;
}

/* sections head */

.top-part {
    display: flex;
    justify-content: space-between;
}

.top-part-head {
    font-size: 36px;
    font-weight: 800;
}

.view-all {
    display: flex;
    align-items: baseline;
    gap: 20px;
}

.view-all a {
    font-size: 18px;
    text-decoration: none;
    color: inherit;
}

span.view-all-arrow {
    width: 30px;
    height: 30px;
}

span.view-all-arrow img {
    width: 100%;
    height: 100%;
}



/* section one */

.section-one {
    padding: 0 30px;
    margin-top: 84px;
}

.main-content,
.product-details-page {
    margin-top: 84px;
}

.top-banner-content {
    position: relative;
    width: 100%;
}

.top-banner-content img {
    width: 100%;
}

.top-bottom-content {
    display: flex;
    justify-content: space-between;
    margin: 30px 20px;
}

.top-bottom-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.top-bottom-card a{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.top-card-img {
    height: 50px;
    width: 50px;
}

.top-card-img img {
    height: 100%;
    width: 100%;
}

.top-bottom-card h6 {
    font-weight: 600;
    font-size: 14px;
}



/* section 2 */

.section-two {
    padding: 30px 30px;
}

.category-section {
    margin-top: 20px;
}

.category-card {
    border: 1px solid var(--pdp-border-soft);
    padding: 10px;
    border-radius: 5%;
}

.category-name h6 {
    font-size: 18px;
    font-weight: 800;
}

a.category-link {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    color: var(--pdp-text);
    text-decoration: none;
    font-size: 15px;
}

.category-arrow {
    width: 30px;
    height: auto;
}



/* section 3 */

.section-three {
    padding: 30px 30px;
}

.trending-section {
    margin-top: 20px;
}

.trending-card {
    padding: 10px;
}

.trending-img {
    position: relative;
}

.wishlist-icon {
    position: absolute;
    right: 5px;
    top: 0px;
    font-size: 20px;
    width: 22px;
    height: 22px;
}

.wishlist-icon img {
    width: 100%;
    height: 100%;
}

.new-icon {
    position: absolute;
    bottom: 0;
    left: 0px;
}

.new-icon h6 {
    font-size: 10px;
    background: var(--pdp-red);
    color: var(--pdp-white);
    padding: 3px 4px;
}

.trending-details {
    margin-top: 5px;
}

.trending-name {
    font-size: 16px;
}

.trending-price {
    font-size: 18px;
    font-weight: 800;
}

.trending-price span {
    font-weight: 500;
}

.trending-review {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.trending-review h6 {
    font-size: 14px;
}

.trending-star {
    font-size: 12px;
    color: var(--pdp-gold);
}



/* section 4 */

.section-four {
    padding: 30px 30px;
}

.section-four-img img {
    border-radius: 10px;
}

.section-four-bottom {
    display: flex;
    justify-content: space-between;
    margin: 30px 20px;
}

.section-four-card {
    display: flex;
    gap: 20px;
}

.four-card-img {
    width: 50px;
    height: 50px;
}

.four-card-img img {
    width: 100%;
    height: 100%;
}

.card-four-details {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-four-details h4 {
    font-size: 16px;
    margin: 0;
}

.card-four-details h6 {
    font-size: 14px;
    margin: 0;
}



/* section five */

.section-five {
    padding: 30px 30px;
}

.club-section {
    margin-top: 20px;
    display: flex;
    gap: 5px;
}

.club-card {
    padding: 6px;
}

.club-img {
    max-width: 140px;
    max-height: 140px;
}

.club-img img {
    width: 100%;
    height: 100%;
}

.club-name h6 {
    font-size: 18px;
    margin-top: 10px;
}

@media (max-width: 1500px) {
    .top-part-head {
        font-size: 30px;
    }

    .view-all a {
        font-size: 16px;
    }

    .category-name h6 {
        font-size: 16px;
    }

    .four-card-img {
        width: 40px;
        height: 40px;
    }

    .card-four-details h4 {
        font-size: 14px;
    }

    .card-four-details h6 {
        font-size: 13px;
    }
}

@media (max-width: 1024px) {
    .top-card-img {
        height: 40px;
        width: 40px;
    }

    .top-bottom-card h6 {
        font-weight: 600;
        font-size: 12px;
    }

    .top-part-head {
        font-size: 26px;
    }

    .view-all a {
        font-size: 14px;
    }

    span.view-all-arrow {
        width: 20px;
        height: 20px;
    }

    .trending-name {
        font-size: 14px;
    }

    .trending-price {
        font-size: 16px;
    }

    .trending-star {
        font-size: 10px;
    }

    .trending-review h6 {
        font-size: 12px;
    }

    .new-icon h6 {
        font-size: 8px;
    }

    .section-four-card {
        gap: 10px;
    }

    .four-card-img {
        width: 30px;
        height: 30px;
    }

    .card-four-details h4 {
        font-size: 11px;
    }

    .card-four-details h6 {
        font-size: 10px;
    }

    .club-name h6 {
        font-size: 14px;
    }
}


@media (max-width: 914px) {
    .club-name h6 {
        font-size: 12px;
    }
}

@media (max-width: 814px) {
    .club-name h6 {
        font-size: 11px;
    }
}

@media (max-width: 768px) {

    .main-content,
    .product-details-page {
        margin-top: 150px !important;
    }

    .section-one {
        padding: 0 5px;
        margin-top: 150px;
    }

    .top-bottom-content {
        margin: 25px 10px;
    }

    .top-card-img {
        height: 30px;
        width: 30px;
    }

    .top-bottom-card h6 {
        font-weight: 600;
        font-size: 10px;
    }

    .section-two {
        padding: 10px 5px;
    }

    .top-part-head {
        font-size: 18px;
    }

    .view-all {
        gap: 5px;
    }

    .view-all a {
        font-size: 12px;
    }

    span.view-all-arrow {
        width: 15px;
        height: 15px;
    }

    .category-name h6 {
        font-size: 14px;
    }

    a.category-link {
        font-size: 12px;
    }

    .category-arrow {
        width: 20px;
    }

    .section-three {
        padding: 10px 5px;
    }

    .wishlist-icon {
        right: 0;
        font-size: 16px;
        width: 18px;
        height: 18px;
    }

    .trending-name {
        font-size: 12px;
    }

    .trending-price {
        font-size: 14px;
    }

    .trending-star {
        font-size: 8px;
    }

    .trending-review h6 {
        font-size: 10px;
    }

    .new-icon h6 {
        padding: 2px 2px;
    }

    .section-four {
        padding: 10px 5px;
    }

    .section-four-bottom {
        margin: 20px 10px;
        /* justify-content: space-around; */
    }

    .section-four-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .section-five {
        padding: 10px 5px;
    }

    .club-name h6 {
        font-size: 12px;
    }

}

@media (max-width: 600px) {
    .four-card-img {
        width: 25px;
        height: 25px;
    }

    .card-four-details h4 {
        font-size: 9px;
    }

    .card-four-details h6 {
        font-size: 8px;
    }
}

@media (max-width: 574px) {
    .club-name h6 {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .top-card-img {
        height: 20px;
        width: 20px;
    }

    .top-bottom-card h6 {
        font-size: 8px;
    }

    .top-part-head {
        font-size: 16px;
    }

    .category-name h6 {
        font-size: 12px;
    }

    a.category-link {
        font-size: 10px;
    }

    .category-arrow {
        width: 14px;
    }

    .trending-name {
        font-size: 10px;
    }

    .trending-price {
        font-size: 12px;
    }

    .new-icon h6 {
        font-size: 6px;
    }
}

@media (max-width: 450px) {
    .card-four-details h4 {
        font-size: 8px;
    }
}


@media (max-width: 400px) {
    .page-title {
        font-size: 30px !important;
    }
}






.page-section {
    /* background-color: #ede8df;
  background-image: url('../images/bg.png');
  background-repeat: no-repeat;
  background-size: 100%; */
    min-height: 100vh;
    overflow-x: hidden;
}

.page-title {
    font-family: "Noto Sans", sans-serif;
    font-size: 44px;
    font-weight: 800;
    color: var(--pdp-red);
    line-height: 1.2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 40px 6px;
}

.breadcrumb {
    max-width: 1400px;
    margin: 0 auto;
    padding: 6px 40px 24px;
    font-size: 13px;
    color: var(--pdp-muted);
}

.breadcrumb a {
    color: var(--pdp-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb a:hover {
    color: var(--pdp-accent);
}

.breadcrumb span {
    margin: 0 5px;
}




.empty-details {
  text-align: center;
  padding: 80px 20px;
  max-width: 420px;
  margin: 0 auto;
}

.empty-details img {
  margin: 0 auto 20px;
  border-radius: 12px;
  max-width: 220px;
}

.empty-details h2 {
  font-size: 20px;
  font-weight: 800;
  color: var(--pdp-dark);
  margin-bottom: 8px;
}

.empty-details p {
  font-size: 14px;
  color: var(--pdp-muted);
  margin-bottom: 22px;
}

.empty-details button {
  background: var(--pdp-dark);
  color: var(--pdp-white);
  border: none;
  padding: 12px 26px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}

.empty-details button:hover {
  background: var(--pdp-gold);
  color: var(--pdp-dark);
  transform: translateY(-1px);
}