/* БАЗОВЫЙ КЛАСС И СОВМЕСТИМОСТЬ СО СТАРЫМИ КЛАССАМИ */
.btn-base,
.about-me,
.about-we,
.outline-btn,
.outline-btw,
.outline-btf {
font-family: 'Montserrat', sans-serif;
font-weight: 500;
padding: 14px 28px;
font-size: 14px;
border: none;
border-radius: 50px;
transition: all 0.4s ease;
cursor: pointer;
position: relative;
overflow: hidden;
display: inline-block;
text-decoration: none;
text-align: center;
white-space: nowrap;
user-select: none;
outline: none;
}

/* ЭФФЕКТ БЛИКА */
.btn-base::before,
.about-me::before,
.about-we::before,
.outline-btn::before,
.outline-btw::before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(
90deg,
transparent,
rgba(255, 255, 255, 0.2),
transparent
);
transition: left 0.6s ease;
z-index: 1;
}

.btn-base:hover::before,
.about-me:hover::before,
.about-we:hover::before,
.outline-btn:hover::before,
.outline-btw:hover::before {
left: 100%;
}

.btn-base:hover,
.about-me:hover,
.about-we:hover,
.outline-btn:hover,
.outline-btw:hover {
transform: translateY(-3px);
}

.btn-base:active,
.about-me:active,
.about-we:active,
.outline-btn:active,
.outline-btw:active {
transform: translateY(-1px);
transition: transform 0.1s ease;
}

.btn-base span,
.about-me span,
.about-we span {
position: relative;
z-index: 2;
text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* МОДИФИКАТОРЫ ЦВЕТА И СТИЛИ КОНКРЕТНЫХ КНОПОК */

/* ТЕМНЫЙ ШОКОЛАД */
.btn-chocolate, .about-me {
color: #fcfce7;
background: linear-gradient(135deg, #251c18 0%, #3d2b24 100%);
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.btn-chocolate:hover, .about-me:hover {
background: linear-gradient(135deg, #2d221d 0%, #4a342c 100%);
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
}

/* ЯРКИЙ ЯНТАРЬ (CTA) */
.btn-amber, .about-we {
color: #fcfce7;
background: linear-gradient(135deg, #FF8C00 0%, #FF4500 100%);
box-shadow: 0 4px 12px rgba(255, 140, 0, 0.3);
}

.btn-amber:hover, .about-we:hover {
background: linear-gradient(135deg, #FF9500 0%, #FF5E00 100%);
box-shadow: 0 8px 20px rgba(255, 69, 0, 0.5);
}

/* ЗОЛОТОЙ КОНТУР */
.btn-outline-gold, .outline-btn {
color: #dd9f59;
background: transparent;
border: 2px solid #dd9f59;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.btn-outline-gold:hover, .outline-btn:hover {
background: rgba(221, 159, 89, 0.05);
box-shadow: 0 8px 20px rgba(221, 159, 89, 0.2);
}

/* СЛОНОВАЯ КОСТЬ / ПРЕМИУМ */
.btn-ivory, .outline-btw {
color: #1b1411;
background: #fcfcfc;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.btn-ivory:hover, .outline-btw:hover {
background: #ffffff;
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* ФУТЕР (СТРОГИЙ КОНТУР) */
.btn-footer, .outline-btf {
color: #dd9f59 !important;
background: transparent;
border: 2px solid #dd9f59;
font-size: 13px;
text-transform: uppercase;
letter-spacing: 1px;
width: 100%;
max-width: 220px;
padding: 12px 24px;
}

/* КОНТЕЙНЕРЫ */
.buttons-container {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 30px;
padding: 40px;
background: #1b1411;
align-items: stretch;
}

/* ПАГИНАЦИЯ */
.pagination {
display: flex;
justify-content: center;
align-items: center;
margin: 50px 0;
gap: 10px;
}

.pagination a {
display: flex;
align-items: center;
justify-content: center;
width: 45px;
height: 45px;
text-decoration: none;
font-family: 'Montserrat', sans-serif;
font-weight: 600;
font-size: 16px;
color: #fcfce7;
background: rgba(37, 28, 24, 0.5);
border: 1px solid rgba(221, 159, 89, 0.3);
border-radius: 8px;
backdrop-filter: blur(3px);
transition: all 0.3s ease;
}

.pagination a:hover {
background: rgba(221, 159, 89, 0.1);
color: #dd9f59;
border-color: #dd9f59;
transform: translateY(-2px);
}

.pagination a.active {
background: #dd9f59;
color: #1b1411;
border-color: #dd9f59;
box-shadow: 0 4px 12px rgba(221, 159, 89, 0.4);
}

.button-caption span {
color: #868684;
}

