.pt-page {
    background: #0a0a0a;
    color: var(--main-text-color);
    font-family: var(--main-font-family), sans-serif;
    font-size: var(--main-font-size);
    min-height: 100vh;
    overflow-x: hidden;
}

/* ===== HERO ===== */
.pt-hero {
    position: relative;
    min-height: 60vw;
    max-height: 520px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: #0a0a0a;
}

.pt-hero__bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 60% 40%, rgba(245,158,11,.18) 0%, transparent 70%),
                radial-gradient(ellipse at 10% 80%, rgba(245,158,11,.08) 0%, transparent 60%);
    z-index: 0;
}

.pt-hero__bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23f59e0b' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: .5;
}

.pt-hero__img {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: .25;
    filter: blur(2px) saturate(1.4);
    z-index: 0;
}

.pt-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, #0a0a0a 0%, rgba(10,10,10,.6) 50%, transparent 100%);
    z-index: 1;
}

.pt-hero__content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 2rem 1.25rem 2.5rem;
}

.pt-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    background: rgba(245,158,11,.12);
    border: 1px solid rgba(245,158,11,.3);
    border-radius: 50px;
    padding: .35rem .9rem;
    font-size: .72rem;
    color: var(--main-color);
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    backdrop-filter: blur(8px);
}

.pt-hero__badge svg { width: 14px; height: 14px; }

.pt-hero__title {
    font-size: clamp(1.8rem, 7vw, 3.2rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.2;
    letter-spacing: -.02em;
    margin-bottom: .75rem;
}

.pt-hero__title span {
    background: linear-gradient(135deg, var(--main-color), #fcd34d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pt-hero__desc {
    font-size: .9rem;
    color: rgba(255,255,255,.55);
    max-width: 480px;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.pt-hero__meta {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.pt-hero__count {
    display: flex;
    align-items: center;
    gap: .5rem;
    color: var(--main-color);
    font-size: .85rem;
    font-weight: 700;
}

.pt-hero__count svg { opacity: .8; }

/* ===== BREADCRUMB ===== */
.pt-breadcrumb-wrap {
    background: rgba(255,255,255,.03);
    border-bottom: 1px solid rgba(255,255,255,.06);
    padding: .6rem 1.25rem;
}

.an-breadcrumb {
    font-size: .78rem;
    color: rgba(255,255,255,.4);
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: .3rem;
}

.an-breadcrumb a {
    color: rgba(255,255,255,.5);
    text-decoration: none;
    transition: color .2s;
}

.an-breadcrumb a:hover { color: var(--main-color); }

.an-breadcrumb .breadcrumb_last { color: var(--main-color); }

.breadcrumb-ind {
    width: 5px; height: 5px;
    background: rgba(255,255,255,.2);
    border-radius: 50%;
    display: inline-block;
}

/* ===== ABOUT SECTION ===== */
.pt-about {
    margin: 2.5rem 1.25rem;
    background: linear-gradient(135deg, rgba(245,158,11,.07) 0%, rgba(245,158,11,.03) 100%);
    border: 1px solid rgba(245,158,11,.15);
    border-radius: 20px;
    padding: 1.75rem 1.5rem;
    position: relative;overflow: hidden;
}

.pt-about::before {
    content: '';
    position: absolute;
    top: -30px; right: -30px;
    width: 120px; height: 120px;
    background: radial-gradient(circle, rgba(245,158,11,.15), transparent 70%);
    border-radius: 50%;
}

.pt-about__icon {
    width: 48px; height: 48px;
    background: linear-gradient(135deg, var(--main-color), #d97706);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    box-shadow: 0 8px 24px rgba(245,158,11,.3);
}

.pt-about__icon svg { width: 24px; height: 24px; color: #000; }

.pt-about__title {
    font-size: 1.15rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: .75rem;
}

.pt-about__body {
    font-size: .88rem;
    color: rgba(255,255,255,.6);
    line-height: 1.85;
}

.pt-about__body p { margin-bottom: .75rem; }

/* ===== GRID SECTION ===== */
.pt-grid-section {
    padding: 0 1.25rem 3rem;
}

.pt-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    gap: 1rem;
}

.pt-section-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
    display: flex;
    align-items: center;
    gap: .6rem;
}

.pt-section-title::before {
    content: '';
    width: 4px; height: 22px;
    background: linear-gradient(180deg, var(--main-color), #d97706);
    border-radius: 4px;
    display: block;
}

.pt-count-badge {
    background: rgba(245,158,11,.15);
    border: 1px solid rgba(245,158,11,.25);
    color: var(--main-color);
    font-size: .75rem;
    font-weight: 700;
    padding: .25rem .7rem;
    border-radius: 50px;
}

/* ===== PERFUME CARD ===== */
.pt-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.pt-card {
    background: linear-gradient(145deg, #141414, #111);
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 20px;
    overflow: hidden;
    transition: transform .3s cubic-bezier(.34,1.56,.64,1), border-color .3s, box-shadow .3s;position: relative;
    text-decoration: none;
    display: flex;
    flex-direction: column;
}

.pt-card:active {
    transform: scale(.97);
}

.pt-card:hover {
    border-color: rgba(245,158,11,.35);
    box-shadow: 0 16px 48px rgba(0,0,0,.5), 0 0 0 1px rgba(245,158,11,.1);
}

.pt-card__img-wrap {
    position: relative;aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #0e0e0e;
}

.pt-card__img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,.7) 100%);
}

.pt-card__img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.pt-card:hover .pt-card__img { transform: scale(1.06); }

.pt-card__luxury-tag {
    position: absolute;
    top: .6rem;
    right: .6rem;
    background: rgba(0,0,0,.75);
    border: 1px solid rgba(245,158,11,.4);
    border-radius: 6px;
    padding: .2rem .5rem;
    font-size: .62rem;
    color: var(--main-color);
    letter-spacing: .06em;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
    z-index: 1;
}

.pt-card__body {
    padding: .85rem .9rem 1rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.pt-card__name {
    font-size: .9rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.pt-card__meta {
    display: flex;
    flex-direction: column;
    gap: .3rem;
    flex: 1;
}

.pt-card__meta-row {
    display: flex;
    align-items: center;
    gap: .45rem;
    font-size: .75rem;
    color: rgba(255,255,255,.4);
}

.pt-card__meta-row svg {
    width: 13px; height: 13px;
    color: var(--main-color);
    flex-shrink: 0;opacity: .7;
}

.pt-card__meta-val {
    color: rgba(255,255,255,.65);
    font-weight: 600;
}

.pt-card__cta {
    margin-top: .6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .4rem;
    background: linear-gradient(135deg, rgba(245,158,11,.15), rgba(245,158,11,.08));
    border: 1px solid rgba(245,158,11,.25);
    border-radius: 10px;
    padding: .6rem;
    font-size: .78rem;
    font-weight: 700;
    color: var(--main-color);
    text-decoration: none;
    transition: background .25s, border-color .25s;
}

.pt-card__cta svg { width: 14px; height: 14px; }

.pt-card:hover .pt-card__cta {
    background: linear-gradient(135deg, rgba(245,158,11,.25), rgba(245,158,11,.15));
    border-color: rgba(245,158,11,.5);
}

/* ===== EMPTY STATE ===== */
.pt-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 1rem;
    color: rgba(255,255,255,.3);
}

.pt-empty svg {
    width: 64px; height: 64px;
    margin: 0 auto 1rem;
    opacity: .3;
    display: block;
}

/* ===== PAGINATION ===== */
.pt-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: 2rem 1.25rem 3rem;
    flex-wrap: wrap;
}

.pt-pagination .page-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px; height: 40px;
    border-radius: 10px;
    font-size: .85rem;
    font-weight: 700;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,.1);
    color: rgba(255,255,255,.5);
    background: rgba(255,255,255,.04);
    transition: all .25s;
    padding: 0 .75rem;
}

.pt-pagination .page-numbers.current,
.pt-pagination .page-numbers:hover {
    background: var(--main-color);
    border-color: var(--main-color);
    color: #000;
    box-shadow: 0 4px 16px rgba(245,158,11,.35);
}

.pt-pagination .page-numbers.dots {
    border: none; background: none; color: rgba(255,255,255,.3);
}

/* ===== DESKTOP ===== */
@media (min-width: 640px) {
    .pt-grid { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
    .pt-hero { min-height: 380px; }
    .pt-hero__content { padding: 2.5rem 2rem 3rem; }
    .pt-about { margin: 3rem 2rem; padding: 2.5rem; }
    .pt-grid-section { padding: 0 2rem 4rem; }
    .pt-breadcrumb-wrap { padding: .7rem 2rem; }
}

@media (min-width: 1024px) {
    .pt-grid { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
    .pt-hero { max-height: 600px; }
    .pt-hero__content { padding: 3rem 4rem 4rem; }
    .pt-about { margin: 3rem auto; max-width: 1200px; padding: 3rem; display: flex; gap: 2rem; align-items: flex-start; }
    .pt-about__icon { flex-shrink: 0; }
    .pt-grid-section { max-width: 1200px; margin: 0 auto; }
    .pt-breadcrumb-wrap { padding: .7rem 4rem; }
    .pt-pagination { padding-bottom: 4rem; }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

.pt-card {
    animation: fadeUp .4s ease both;
}

.pt-card:nth-child(1)  { animation-delay: .05s; }
.pt-card:nth-child(2)  { animation-delay: .10s; }
.pt-card:nth-child(3)  { animation-delay: .15s; }
.pt-card:nth-child(4)  { animation-delay: .20s; }
.pt-card:nth-child(5)  { animation-delay: .25s; }
.pt-card:nth-child(6)  { animation-delay: .30s; }
.pt-card:nth-child(7)  { animation-delay: .35s; }
.pt-card:nth-child(8)  { animation-delay: .40s; }
.pt-card:nth-child(9)  { animation-delay: .45s; }
.pt-card:nth-child(10) { animation-delay: .50s; }
.pt-card:nth-child(11) { animation-delay: .55s; }
.pt-card:nth-child(12) { animation-delay: .60s; }

[data-theme="light"] .pt-page {
    background: #fdf8f0;
    color: #1a1208;
  }
  
  [data-theme="light"] .pt-hero {
    background: #fdf8f0;
  }
  
  [data-theme="light"] .pt-hero__bg {
    background: radial-gradient(ellipse at 60% 40%, rgba(245,158,11,.15) 0%, transparent 70%),
                radial-gradient(ellipse at 10% 80%, rgba(245,158,11,.07) 0%, transparent 60%);
  }
  
  [data-theme="light"] .pt-hero__overlay {
    background: linear-gradient(to top, #fdf8f0 0%, rgba(253,248,240,.7) 50%, transparent 100%);
  }
  
  [data-theme="light"] .pt-hero__title { color: #1a1208; }
  
  [data-theme="light"] .pt-hero__desc { color: rgba(26,18,8,.55); }
  
  [data-theme="light"] .pt-breadcrumb-wrap {
    background: rgba(160,100,10,.04);
    border-bottom-color: rgba(160,100,10,.1);
  }
  
  [data-theme="light"] .an-breadcrumb { color: rgba(26,18,8,.4); }
  [data-theme="light"] .an-breadcrumb a { color: rgba(26,18,8,.5); }
  [data-theme="light"] .breadcrumb-ind { background: rgba(26,18,8,.2); }
  
  [data-theme="light"] .pt-about {
    background: linear-gradient(135deg, rgba(245,158,11,.08) 0%, rgba(245,158,11,.03) 100%);
    border-color: rgba(160,100,10,.18);
  }
  
  [data-theme="light"] .pt-about__title { color: #1a1208; }
  [data-theme="light"] .pt-about__body  { color: rgba(26,18,8,.65); }
  
  [data-theme="light"] .pt-section-title { color: #1a1208; }
  
  [data-theme="light"] .pt-card {
    background: linear-gradient(145deg, #fff8ec, #fff4e0);
    border-color: rgba(160,100,10,.12);
  }
  
  [data-theme="light"] .pt-card:hover {
    border-color: rgba(245,158,11,.45);
    box-shadow: 0 16px 48px rgba(160,100,10,.13), 0 0 0 1px rgba(245,158,11,.12);
  }
  
  [data-theme="light"] .pt-card__img-wrap { background: #fef3d8; }
  
  [data-theme="light"] .pt-card__img-wrap::after {
    background: linear-gradient(to bottom, transparent 50%, rgba(253,248,240,.8) 100%);
  }
  
  [data-theme="light"] .pt-card__luxury-tag {
    background: rgba(253,248,240,.9);
    border-color: rgba(245,158,11,.45);
    color: #92400e;
  }
  
  [data-theme="light"] .pt-card__name { color: #1a1208; }
  
  [data-theme="light"] .pt-card__meta-row { color: rgba(26,18,8,.4); }
  [data-theme="light"] .pt-card__meta-val { color: rgba(26,18,8,.7); }
  
  [data-theme="light"] .pt-card__cta {
    background: linear-gradient(135deg, rgba(245,158,11,.12), rgba(245,158,11,.06));
    border-color: rgba(245,158,11,.28);
  }
  
  [data-theme="light"] .pt-card:hover .pt-card__cta {
    background: linear-gradient(135deg, rgba(245,158,11,.22), rgba(245,158,11,.12));
    border-color: rgba(245,158,11,.55);
  }
  
  [data-theme="light"] .pt-empty { color: rgba(26,18,8,.3); }
  
  [data-theme="light"] .pt-pagination .page-numbers {
    background: rgba(160,100,10,.04);
    border-color: rgba(160,100,10,.14);
    color: rgba(26,18,8,.55);
  }
  
  [data-theme="light"] .pt-pagination .page-numbers.dots { color: rgba(26,18,8,.3); }  