@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    background-image: url('image/фон.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    color: #fff;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
    overflow-y: auto;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    will-change: auto;
}

html {
    overflow-x: hidden;
    overflow-y: auto;
}

/* Prevent horizontal scrolling on all elements */
* {
    max-width: 100%;
    box-sizing: border-box;
}

/* Ensure main container doesn't cause horizontal overflow */
.main-container {
    max-width: 100%;
    overflow-x: hidden;
    width: 100%;
}

/* Prevent horizontal overflow for images and media */
img, video, iframe, embed, object {
    max-width: 100%;
    height: auto;
}

/* Prevent horizontal overflow for text elements */
p, h1, h2, h3, h4, h5, h6, span, div, section {
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

/* Cart Button Styles */
.cart-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #C89C6D, #8B5A3C);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(200, 156, 109, 0.4);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
}

.cart-button:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(200, 156, 109, 0.6);
}

.cart-button .cart-icon {
  position: relative;
}

.cart-button .cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background: #ff4444;
  color: white;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  font-size: 12px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
}

/* Animated Cart Button with provided design */
.cart-button-animated {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  width: 240px;
  height: 56px;
  text-decoration: none;
  font-size: 14px;
  font-weight: bold;
  color: #C89C6D;
  letter-spacing: 2px;
  transition: all 0.3s ease;
  background: transparent;
  border: none;
  cursor: pointer;
}

.cart-button-animated.type--C {
  --line_color: #C89C6D;
  --back_color: #8B5A3C;
}

.cart-button-animated .button__text {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 2;
}

.cart-button-animated::before,
.cart-button-animated::after,
.cart-button-animated .button__text::before,
.cart-button-animated .button__text::after {
  content: "";
  position: absolute;
  height: 3px;
  border-radius: 2px;
  background: var(--line_color);
  transition: all 0.5s ease;
}

.cart-button-animated::before {
  top: 0;
  left: 54px;
  width: calc(100% - 56px * 2 - 16px);
}

.cart-button-animated::after {
  top: 0;
  right: 54px;
  width: 8px;
}

.cart-button-animated .button__text::before {
  bottom: 0;
  right: 54px;
  width: calc(100% - 56px * 2 - 16px);
}

.cart-button-animated .button__text::after {
  bottom: 0;
  left: 54px;
  width: 8px;
}

.cart-button-animated .button__line {
  position: absolute;
  top: 0;
  width: 56px;
  height: 100%;
  overflow: hidden;
}

.cart-button-animated .button__line::before {
  content: "";
  position: absolute;
  top: 0;
  width: 150%;
  height: 100%;
  box-sizing: border-box;
  border-radius: 300px;
  border: solid 3px var(--line_color);
}

.cart-button-animated .button__line:nth-child(1),
.cart-button-animated .button__line:nth-child(1)::before {
  left: 0;
}

.cart-button-animated .button__line:nth-child(2),
.cart-button-animated .button__line:nth-child(2)::before {
  right: 0;
}

.cart-button-animated:hover {
  letter-spacing: 6px;
}

.cart-button-animated:hover::before,
.cart-button-animated:hover .button__text::before {
  width: 8px;
}

.cart-button-animated:hover::after,
.cart-button-animated:hover .button__text::after {
  width: calc(100% - 56px * 2 - 16px);
}

.cart-button-animated .button__drow1,
.cart-button-animated .button__drow2 {
  position: absolute;
  z-index: -1;
  border-radius: 16px;
  transform-origin: 16px 16px;
}

.cart-button-animated .button__drow1 {
  top: -16px;
  left: 40px;
  width: 32px;
  height: 0;
  transform: rotate(30deg);
}

.cart-button-animated .button__drow2 {
  top: 44px;
  left: 77px;
  width: 32px;
  height: 0;
  transform: rotate(-127deg);
}

.cart-button-animated .button__drow1::before,
.cart-button-animated .button__drow1::after,
.cart-button-animated .button__drow2::before,
.cart-button-animated .button__drow2::after {
  content: "";
  position: absolute;
}

.cart-button-animated .button__drow1::before {
  bottom: 0;
  left: 0;
  width: 0;
  height: 32px;
  border-radius: 16px;
  transform-origin: 16px 16px;
  transform: rotate(-60deg);
}

.cart-button-animated .button__drow1::after {
  top: -10px;
  left: 45px;
  width: 0;
  height: 32px;
  border-radius: 16px;
  transform-origin: 16px 16px;
  transform: rotate(69deg);
}

.cart-button-animated .button__drow2::before {
  bottom: 0;
  left: 0;
  width: 0;
  height: 32px;
  border-radius: 16px;
  transform-origin: 16px 16px;
  transform: rotate(-146deg);
}

.cart-button-animated .button__drow2::after {
  bottom: 26px;
  left: -40px;
  width: 0;
  height: 32px;
  border-radius: 16px;
  transform-origin: 16px 16px;
  transform: rotate(-262deg);
}

.cart-button-animated .button__drow1,
.cart-button-animated .button__drow1::before,
.cart-button-animated .button__drow1::after,
.cart-button-animated .button__drow2,
.cart-button-animated .button__drow2::before,
.cart-button-animated .button__drow2::after {
  background: var(--back_color);
}

.cart-button-animated:hover .button__drow1 {
  animation: drow1 ease-in 0.06s;
  animation-fill-mode: forwards;
}

.cart-button-animated:hover .button__drow1::before {
  animation: drow2 linear 0.08s 0.06s;
  animation-fill-mode: forwards;
}

.cart-button-animated:hover .button__drow1::after {
  animation: drow3 linear 0.03s 0.14s;
  animation-fill-mode: forwards;
}

.cart-button-animated:hover .button__drow2 {
  animation: drow4 linear 0.06s 0.2s;
  animation-fill-mode: forwards;
}

.cart-button-animated:hover .button__drow2::before {
  animation: drow3 linear 0.03s 0.26s;
  animation-fill-mode: forwards;
}

.cart-button-animated:hover .button__drow2::after {
  animation: drow5 linear 0.06s 0.32s;
  animation-fill-mode: forwards;
}

@keyframes drow1 {
  0% {
    height: 0;
  }
  100% {
    height: 100px;
  }
}

@keyframes drow2 {
  0% {
    width: 0;
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  11% {
    opacity: 1;
  }
  100% {
    width: 120px;
  }
}

@keyframes drow3 {
  0% {
    width: 0;
  }
  100% {
    width: 80px;
  }
}

@keyframes drow4 {
  0% {
    height: 0;
  }
  100% {
    height: 120px;
  }
}

@keyframes drow5 {
  0% {
    width: 0;
  }
  100% {
    width: 124px;
  }
}

/* Cart Modal Styles */
.cart-item {
  display: flex;
  align-items: center;
  padding: 15px;
  border-bottom: 1px solid #333;
  gap: 15px;
}

.cart-item-image {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  overflow: hidden;
}

.cart-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item-details {
  flex: 1;
}

.cart-item-details h4 {
  margin: 0 0 5px 0;
  color: #fff;
  font-size: 16px;
}

.cart-item-price {
  margin: 0;
  color: #C89C6D;
  font-weight: bold;
  font-size: 14px;
}

.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cart-quantity-btn {
  width: 30px;
  height: 30px;
  border: 1px solid #C89C6D;
  background: transparent;
  color: #C89C6D;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all 0.3s ease;
}

.cart-quantity-btn:hover {
  background: #C89C6D;
  color: #000;
}

.cart-quantity {
  color: #fff;
  font-weight: bold;
  min-width: 20px;
  text-align: center;
}

.cart-remove-btn {
  width: 30px;
  height: 30px;
  border: 1px solid #ff4444;
  background: transparent;
  color: #ff4444;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.cart-remove-btn:hover {
  background: #ff4444;
  color: #fff;
}

.cart-notification {
  animation: slideIn 0.3s ease;
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideOut {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(100%);
    opacity: 0;
  }
}

/* Mobile responsive cart button */
@media (max-width: 1024px) {
  .cart-button-animated {
    width: 220px;
    height: 52px;
    bottom: 18px;
    right: 18px;
    font-size: 13px;
    color: #C89C6D;
  }
  
  .cart-button-animated .button__line {
    width: 52px;
  }
  
  .cart-button-animated::before {
    left: 52px;
    width: calc(100% - 52px * 2 - 16px);
  }
  
  .cart-button-animated::after {
    right: 52px;
  }
  
  .cart-button-animated .button__text::before {
    right: 52px;
    width: calc(100% - 52px * 2 - 16px);
  }
  
  .cart-button-animated .button__text::after {
    left: 52px;
  }
}

@media (max-width: 768px) {
  .cart-button-animated {
    width: 180px;
    height: 48px;
    bottom: 20px;
    right: 20px;
    font-size: 12px;
    color: #C89C6D;
  }
  
  .cart-button-animated .button__line {
    width: 48px;
  }
  
  .cart-button-animated::before {
    left: 48px;
    width: calc(100% - 48px * 2 - 16px);
  }
  
  .cart-button-animated::after {
    right: 48px;
  }
  
  .cart-button-animated .button__text::before {
    right: 48px;
    width: calc(100% - 48px * 2 - 16px);
  }
  
  .cart-button-animated .button__text::after {
    left: 48px;
  }
}

@media (max-width: 480px) {
  .cart-button-animated {
    width: 140px;
    height: 40px;
    bottom: 20px;
    right: 20px;
    font-size: 10px;
    color: #C89C6D;
    letter-spacing: 1px;
  }
  
  .cart-button-animated .button__line {
    width: 40px;
  }
  
  .cart-button-animated::before {
    left: 40px;
    width: calc(100% - 40px * 2 - 16px);
  }
  
  .cart-button-animated::after {
    right: 40px;
  }
  
  .cart-button-animated .button__text::before {
    right: 40px;
    width: calc(100% - 40px * 2 - 16px);
  }
  
  .cart-button-animated .button__text::after {
    left: 40px;
  }
  
  .cart-button-animated:hover {
    letter-spacing: 3px;
  }
}

@media (max-width: 360px) {
  .cart-button-animated {
    width: 120px;
    height: 36px;
    bottom: 20px;
    right: 20px;
    font-size: 9px;
    color: #C89C6D;
    letter-spacing: 0.5px;
  }
  
  .cart-button-animated .button__line {
    width: 36px;
  }
  
  .cart-button-animated::before {
    left: 36px;
    width: calc(100% - 36px * 2 - 16px);
  }
  
  .cart-button-animated::after {
    right: 36px;
  }
  
  .cart-button-animated .button__text::before {
    right: 36px;
    width: calc(100% - 36px * 2 - 16px);
  }
  
  .cart-button-animated .button__text::after {
    left: 36px;
  }
  
  .cart-button-animated:hover {
    letter-spacing: 2px;
  }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
  .cart-button-animated {
    /* Увеличиваем область касания для мобильных устройств */
    min-height: 44px;
    min-width: 44px;
    /* Улучшаем отзывчивость на касание */
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
  }
  
  .cart-button-animated:hover {
    /* Отключаем hover эффекты на touch устройствах */
    letter-spacing: 2px;
  }
  
  .cart-button-animated:hover::before,
  .cart-button-animated:hover .button__text::before {
    width: 8px;
  }
  
  .cart-button-animated:hover::after,
  .cart-button-animated:hover .button__text::after {
    width: calc(100% - 56px * 2 - 16px);
  }
  
  .cart-button-animated:active {
    transform: scale(0.95);
    transition: transform 0.1s ease;
  }
}

/* Landscape orientation for mobile */
@media (max-width: 768px) and (orientation: landscape) {
  .cart-button-animated {
    width: 160px;
    height: 44px;
    bottom: 20px;
    right: 20px;
    font-size: 11px;
  }
  
  .cart-button-animated .button__line {
    width: 44px;
  }
  
  .cart-button-animated::before {
    left: 44px;
    width: calc(100% - 44px * 2 - 16px);
  }
  
  .cart-button-animated::after {
    right: 44px;
  }
  
  .cart-button-animated .button__text::before {
    right: 44px;
    width: calc(100% - 44px * 2 - 16px);
  }
  
  .cart-button-animated .button__text::after {
    left: 44px;
  }
}

/* High DPI displays optimization */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .cart-button-animated {
    /* Улучшаем четкость на Retina дисплеях */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
}

/* Safe area for devices with notches */
@supports (padding: max(0px)) {
  .cart-button-animated {
    bottom: max(20px, env(safe-area-inset-bottom));
    right: max(20px, env(safe-area-inset-right));
  }
  
  @media (max-width: 768px) {
    .cart-button-animated {
      bottom: max(20px, env(safe-area-inset-bottom));
      right: max(20px, env(safe-area-inset-right));
    }
  }
  
  @media (max-width: 480px) {
    .cart-button-animated {
      bottom: max(20px, env(safe-area-inset-bottom));
      right: max(20px, env(safe-area-inset-right));
    }
  }
}

/* Prevent horizontal scrolling on touch devices */
@media (hover: none) and (pointer: coarse) {
    html, body {
        -webkit-overflow-scrolling: touch;
        overscroll-behavior-x: none;
        overscroll-behavior-y: auto;
        background-attachment: scroll;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
    }

    body {
        background-attachment: scroll !important;
        -webkit-background-attachment: scroll !important;
        background-size: cover !important;
        -webkit-background-size: cover !important;
        background-position: center !important;
        background-repeat: no-repeat !important;
    }

    * {
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        -khtml-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }

    /* Allow text selection in input fields */
    input, textarea, [contenteditable] {
        -webkit-user-select: text;
        -khtml-user-select: text;
        -moz-user-select: text;
        -ms-user-select: text;
        user-select: text;
    }
}

/* Добавляем полупрозрачный оверлей для лучшей читаемости текста */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(26, 26, 26, 0.7), rgba(13, 13, 13, 0.7));
    z-index: -1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    will-change: auto;
}

.main-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1200px;
    padding: 20px;
    box-sizing: border-box;
    z-index: 1;
    position: relative;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    will-change: auto;
}



.logo {
    width: 100px;
    height: auto;
    max-width: 150px;
    margin-bottom: 20px;
}

.title {
    font-family: 'Montserrat', Arial, sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: clamp(24px, 5vw, 48px);
    line-height: 1.2;
    text-align: center;
    text-transform: uppercase;
    background: linear-gradient(92.24deg, #FFFFFF -1.32%, #C08243 105.88%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: -7px 47px 19px rgba(0, 0, 0, 0.01), -4px 26px 16px rgba(0, 0, 0, 0.05), -2px 12px 12px rgba(0, 0, 0, 0.09), 0px 3px 7px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    word-wrap: break-word;
    white-space: normal;
}

.info-description-block {
    max-width: 800px;
    width: 100%;
    font-family: 'Montserrat', Arial, sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: clamp(14px, 2.5vw, 18px);
    line-height: 1.4;
    text-align: center;
    text-transform: uppercase;
    color: #FFFFFF;
    margin-bottom: 30px;
}

.info-description-block p {
    margin: 0;
    padding: 0;
    line-height: 1.4;
}

.description,
.text-block {
    margin: 0;
    padding: 0;
    width: 100%;
}

.continue-prompt {
    position: absolute;
    width: 257px;
    height: 19px;
    left: 825px;
    top: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #aaa;
    text-transform: uppercase;
    font-family: 'Montserrat';
    font-weight: 700;
    line-height: 118%;
}

.dot {
    width: 8px;
    height: 8px;
    background-color: #DD9E6C;
    border-radius: 50%;
    margin-right: 10px;
}

/* Tap to go element */
.tap-to-go {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    margin: 30px 0;
}

.tap-to-go:hover {
    transform: scale(1.05);
}

.tap-circle {
    position: relative;
    width: 19px;
    height: 19px;
    border: 1px solid #FAFAFA;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s infinite;
    margin-right: 15px;
}

.tap-dot {
    width: 7px;
    height: 7px;
    background: #C08243;
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

.tap-text {
    font-family: 'Montserrat', Arial, sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.2;
    display: flex;
    align-items: center;
    text-align: center;
    text-transform: uppercase;
    color: #FFFFFF;
    white-space: nowrap;
}

/* Pulse animation for circle */
@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.7;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Pulse animation for dot */
@keyframes pulse-dot {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.3);
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Modal window styles */
.modal-overlay {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: rgba(25, 25, 25, 0.33) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    display: none !important;
    justify-content: center !important;
    align-items: center !important;
    z-index: 1000 !important;
    opacity: 0 !important;
    transition: opacity 0.3s ease !important;
}

.modal-overlay.show {
    display: flex !important;
    opacity: 1 !important;
}

.modal-content {
    background: #191919 !important;
    padding: 0 !important;
    border-radius: 15px !important;
    max-width: 500px !important;
    width: 90% !important;
    text-align: center !important;
    color: #FFFFFF !important;
    font-family: 'HvDTrial Brandon Text', Arial, sans-serif !important;
    font-weight: 700 !important;
    animation: modal-appear 0.3s ease-out !important;
    overflow: hidden !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5) !important;
}

.modal-header {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 25px 30px 15px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.modal-logo {
    width: 80px !important;
    height: auto !important;
    filter: brightness(1.2) !important;
}

.modal-close {
    position: absolute !important;
    top: 15px !important;
    right: 15px !important;
    background: linear-gradient(135deg, #C08243 0%, #DD9E6C 100%) !important;
    border: 2px solid rgba(255, 255, 255, 0.9) !important;
    color: #363636 !important;
    font-size: 18px !important;
    cursor: pointer !important;
    padding: 6px !important;
    border-radius: 50% !important;
    width: 35px !important;
    height: 35px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s ease !important;
    font-family: Arial, sans-serif !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3), 0 2px 6px rgba(192, 130, 67, 0.4) !important;
    z-index: 1000 !important;
    font-weight: bold !important;
    line-height: 1 !important;
}

.modal-close:hover {
    background: linear-gradient(135deg, #DD9E6C 0%, #C08243 100%) !important;
    transform: scale(1.15) rotate(90deg) !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5), 0 6px 12px rgba(192, 130, 67, 0.8) !important;
    border-color: #FFFFFF !important;
}

.modal-nav {
    padding: 20px 30px !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
}

.nav-item {
    display: flex !important;
    align-items: center !important;
    padding: 15px 20px !important;
    text-decoration: none !important;
    color: #FFFFFF !important;
    border-radius: 10px !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    position: relative !important;
    overflow: hidden !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.nav-item:hover {
    background: linear-gradient(135deg, #C08243 0%, #DD9E6C 100%) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 10px 30px rgba(192, 130, 67, 0.3) !important;
    color: #363636 !important;
    border-color: #C08243 !important;
}

.nav-item:hover .nav-icon {
    transform: scale(1.2) rotate(10deg) !important;
    filter: brightness(1.2) !important;
}

.nav-item:hover .nav-text,
.nav-item.active .nav-text {
    transform: translateX(5px) !important;
    color: #FFFFFF !important;
}

.nav-item.active {
    background: linear-gradient(135deg, #C08243 0%, #DD9E6C 100%) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 10px 30px rgba(192, 130, 67, 0.3) !important;
    color: #363636 !important;
    border-color: #C08243 !important;
}

.nav-item.active .nav-icon {
    transform: scale(1.2) rotate(10deg) !important;
    filter: brightness(1.2) !important;
}

/* Стили для иконки пользователя в навигации */
.user-nav-item {
    cursor: pointer !important;
    transition: all 0.3s ease !important;
}

.user-nav-item:hover {
    background: linear-gradient(135deg, #C08243 0%, #DD9E6C 100%) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 10px 30px rgba(192, 130, 67, 0.3) !important;
    color: #363636 !important;
    border-color: #C08243 !important;
}

.user-nav-item:hover .user-avatar {
    transform: scale(1.1) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3) !important;
}

.user-nav-item:hover .nav-text {
    transform: translateX(5px) !important;
    color: #FFFFFF !important;
}

.user-avatar {
    transition: all 0.3s ease !important;
    border: 2px solid rgba(255, 255, 255, 0.2) !important;
}

.user-avatar:hover {
    border-color: rgba(255, 255, 255, 0.5) !important;
}

/* Выпадающее меню пользователя */
.user-dropdown {
    position: absolute !important;
    top: 100% !important;
    right: 0 !important;
    background: #1a1a1a !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 8px !important;
    padding: 10px 0 !important;
    min-width: 200px !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3) !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateY(-10px) !important;
    transition: all 0.3s ease !important;
    z-index: 1001 !important;
}

.user-dropdown.show {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
}

.user-dropdown-header {
    padding: 10px 15px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.user-dropdown .user-name {
    color: #FFFFFF !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    margin-bottom: 2px !important;
}

.user-dropdown .user-email {
    color: #C08243 !important;
    font-size: 12px !important;
}

.user-logout-btn {
    width: 100% !important;
    background: none !important;
    border: none !important;
    color: #FFFFFF !important;
    padding: 12px 15px !important;
    text-align: left !important;
    cursor: pointer !important;
    transition: background 0.3s ease !important;
    font-size: 14px !important;
}

.user-logout-btn:hover {
    background: rgba(192, 130, 67, 0.1) !important;
    color: #C08243 !important;
}

/* Круглая кнопка выхода */
.user-logout-btn-icon {
    width: 35px !important;
    height: 35px !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 50% !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #FFFFFF !important;
}

.user-logout-btn-icon:hover {
    background: rgba(192, 130, 67, 0.2) !important;
    border-color: #C08243 !important;
    color: #C08243 !important;
    transform: scale(1.1) !important;
}

.user-logout-btn-icon svg {
    transition: all 0.3s ease !important;
}

.user-logout-btn-icon:hover svg {
    transform: rotate(90deg) !important;
}

/* Контейнер кнопок пользователя */
.user-buttons {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    margin-left: auto !important;
}

/* Круглая кнопка корзины пользователя */
.user-cart-btn-icon {
    width: 35px !important;
    height: 35px !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 50% !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #FFFFFF !important;
    position: relative !important;
}

.user-cart-btn-icon:hover {
    background: rgba(192, 130, 67, 0.2) !important;
    border-color: #C08243 !important;
    color: #C08243 !important;
    transform: scale(1.1) !important;
}

.user-cart-btn-icon svg {
    transition: all 0.3s ease !important;
}

.user-cart-btn-icon:hover svg {
    transform: scale(1.1) !important;
}

.user-cart-btn-icon .cart-count {
    position: absolute !important;
    top: -6px !important;
    right: -6px !important;
    background: #C08243 !important;
    color: #fff !important;
    border-radius: 50% !important;
    width: 18px !important;
    height: 18px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 10px !important;
    font-weight: bold !important;
    box-shadow: 0 2px 8px rgba(192, 130, 67, 0.3) !important;
    border: 2px solid #fff !important;
    z-index: 10 !important;
}

/* Круглая кнопка корзины */
.cart-btn-icon {
    width: 35px !important;
    height: 35px !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 50% !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-right: 10px !important;
    color: #FFFFFF !important;
    position: relative !important;
}

.cart-btn-icon:hover {
    background: rgba(192, 130, 67, 0.2) !important;
    border-color: #C08243 !important;
    color: #C08243 !important;
    transform: scale(1.1) !important;
}

.cart-btn-icon svg {
    transition: all 0.3s ease !important;
}

.cart-btn-icon:hover svg {
    transform: scale(1.1) !important;
}

.cart-count {
    position: absolute !important;
    top: -6px !important;
    right: -6px !important;
    background: #C08243 !important;
    color: #fff !important;
    border-radius: 50% !important;
    width: 18px !important;
    height: 18px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 10px !important;
    font-weight: bold !important;
    box-shadow: 0 2px 8px rgba(192, 130, 67, 0.3) !important;
    border: 2px solid #fff !important;
    z-index: 10 !important;
}

.nav-icon {
    font-size: 24px !important;
    margin-right: 15px !important;
    transition: all 0.3s ease !important;
    display: inline-block !important;
    width: 24px !important;
    height: 24px !important;
    object-fit: contain !important;
}

.nav-icon img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
}

.nav-text {
    font-family: 'HvDTrial Brandon Text', Arial, sans-serif !important;
    font-weight: 700 !important;
    font-size: 16px !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    transition: all 0.3s ease !important;
}

.modal-auth {
    padding: 15px 30px 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.auth-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 25px;
    background: linear-gradient(135deg, #1A1A1A 0%, #2A2A2A 100%);
    border: 2px solid #C08243;
    border-radius: 10px;
    color: #FFFFFF;
    text-decoration: none;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.auth-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(192, 130, 67, 0.2), transparent);
    transition: left 0.5s;
}

.auth-btn:hover::before {
    left: 100%;
}

.auth-btn:hover {
    background: linear-gradient(135deg, #C08243 0%, #DD9E6C 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(192, 130, 67, 0.4);
    color: #363636;
    border-color: #A56F35;
}

.auth-btn:hover .auth-icon {
    transform: scale(1.2) rotate(5deg);
    filter: brightness(1.2);
}

.auth-btn:hover .auth-text {
    transform: translateX(3px);
}

.auth-icon {
    width: 20px;
    height: 20px;
    margin-right: 12px;
    transition: all 0.3s ease;
    display: inline-block;
    object-fit: contain;
}

.auth-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.auth-text {
    transition: all 0.3s ease;
}

/* Top Navigation (for contact page) */
.contact-page .top-navigation {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1000;
    display: flex;
    align-items: center;
    font-family: 'Montserrat', Arial, sans-serif;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* Language Selector for home page */
.page-main .language-selector {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    font-family: 'Montserrat', Arial, sans-serif;
}

/* Site Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 90px;
    background: #000000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 1000;
    box-shadow: 0px 248px 99px rgba(0, 0, 0, 0.01), 0px 139px 84px rgba(0, 0, 0, 0.05), 0px 62px 62px rgba(0, 0, 0, 0.09), 0px 15px 34px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.site-header.hidden {
    transform: translateY(-100%);
}

.site-header .logo {
    width: 60px;
    height: auto;
    max-width: 90px;
    margin-bottom: 0;
    align-self: center;
}

/* Burger Menu Button */
.burger-menu-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    background: #000000;
    border: 1px solid #B8B7B7;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    gap: 4px;
    opacity: 1;
    visibility: visible;
}

.site-header .burger-menu-btn:hover {
    background: #1a1a1a;
}

.site-header .burger-menu-btn span {
    width: 20px;
    height: 2px;
    background: #B8B7B7;
    transition: all 0.3s ease;
}

/* Main content padding for site header */
.site-header + .main-content,
.site-header + main {
    padding-top: 100px;
}

/* Ensure burger button is visible on contact page */
.contact-page .burger-menu-btn {
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.burger-menu-btn:hover {
    background: rgba(0, 0, 0, 0.5);
    transform: scale(1.05);
    border-color: rgba(192, 130, 67, 0.3);
}

.burger-menu-btn:active {
    transform: scale(0.95);
    transition-duration: 0.1s;
}

.burger-line {
    width: 20px;
    height: 2px;
    background: #ffffff;
    border-radius: 1px;
    transition: all 0.3s ease;
}

.burger-menu-btn:hover .burger-line {
    background: #C08243;
    box-shadow: 0 0 5px rgba(192, 130, 67, 0.5);
}

/* Language Selector - general */
.language-selector {
    position: relative;
}

/* Language Selector for contact page */
.contact-page .language-selector {
    position: static;
    margin-left: auto;
}

/* Language Selector Right positioning */
.language-selector-right {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    font-family: 'Montserrat', Arial, sans-serif;
}

/* Make sure the language selector has relative positioning for dropdown */
.language-selector-right .lang-toggle-btn {
    position: relative;
}

/* Mobile-specific styles */
@media (max-width: 768px) {
    /* Prevent horizontal overflow on mobile */
    * {
        max-width: 100vw !important;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    /* Fix background loading issues on mobile */
    body {
        background-attachment: scroll !important;
        -webkit-background-attachment: scroll !important;
        background-size: cover !important;
        -webkit-background-size: cover !important;
        background-position: center !important;
        background-repeat: no-repeat !important;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        will-change: auto;
    }
    
    .main-container {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        will-change: auto;
    }

    /* Contact page navigation on mobile */
    .contact-page .top-navigation {
        top: 15px;
        left: 15px;
        gap: 12px;
        display: flex !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .contact-page .burger-menu-btn {
        width: 40px;
        height: 40px;
        border-radius: 10px;
        gap: 3px;
        display: flex !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .contact-page .burger-line {
        width: 18px;
        height: 2px;
    }

    /* Contact page language selector on mobile */
    .contact-page .language-selector {
        margin-left: auto;
    }

    /* Language Selector Right on mobile */
    .language-selector-right {
        top: 15px;
        right: 15px;
    }

    /* Home page language selector on mobile */
    .page-main .language-selector {
        top: 15px;
        right: 15px;
    }

    .lang-toggle-btn {
        background: rgba(0, 0, 0, 0.8);
        border: 2px solid rgba(255, 255, 255, 0.2);
        border-radius: 50px;
        padding: 12px 20px;
        min-width: 120px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        backdrop-filter: blur(20px);
    }

    .lang-toggle-btn:hover,
    .lang-toggle-btn:active {
        background: rgba(0, 0, 0, 0.9);
        transform: scale(1.02);
        box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
    }

    .lang-toggle-btn:active {
        transform: scale(0.98);
        transition-duration: 0.1s;
    }

    .lang-menu {
        position: absolute;
        top: 100%;
        right: 0;
        margin-top: 10px;
        background: rgba(0, 0, 0, 0.9);
        border-radius: 15px;
        padding: 12px 8px;
        backdrop-filter: blur(20px);
        border: 2px solid rgba(255, 255, 255, 0.1);
        min-width: 140px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    }

    .lang-menu.show {
        animation: slideDown 0.3s ease-out;
    }

    .lang-menu-item {
        display: block;
        width: 100%;
        background: transparent;
        border: none;
        color: #fff;
        font-family: 'Montserrat', Arial, sans-serif;
        font-weight: 700;
        font-size: 16px;
        padding: 12px 16px;
        border-radius: 15px;
        cursor: pointer;
        transition: all 0.3s ease;
        text-align: center;
        margin-bottom: 4px;
    }

    .lang-menu-item:hover,
    .lang-menu-item:active {
        background: rgba(255, 255, 255, 0.15);
        transform: translateY(-2px);
    }

    .lang-menu-item:active {
        transform: translateY(0) scale(0.98);
        transition-duration: 0.1s;
    }

    .lang-menu-item.active {
        background: rgba(255, 255, 255, 0.2);
        color: #fff;
        font-weight: 700;
        box-shadow: 0 2px 10px rgba(255, 255, 255, 0.1);
    }

    .lang-toggle-icon {
        font-size: 18px;
    }

    .current-lang {
        font-size: 16px;
        font-weight: 700;
        letter-spacing: 1px;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}

.lang-toggle-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 8px 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    min-width: 70px;
    justify-content: center;
}

.lang-toggle-btn:hover {
    background: rgba(0, 0, 0, 0.5);
    transform: scale(1.05);
}

.lang-toggle-icon {
    font-size: 16px;
    display: flex;
    align-items: center;
}

.current-lang {
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
}

.lang-menu {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 8px;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 15px;
    padding: 8px;
    display: none;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    min-width: 70px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.lang-menu.show {
    display: block;
    animation: slideDown 0.3s ease-out;
}

.lang-menu-item {
    display: block;
    width: 100%;
    background: transparent;
    border: none;
    color: #fff;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 700;
    font-size: 14px;
    padding: 8px 12px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    margin-bottom: 2px;
}

.lang-menu-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

.lang-menu-item.active {
    background: rgba(255, 255, 255, 0.3);
    color: #fff;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(255, 255, 255, 0.1);
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Enhanced Auth Modal Styles */
.auth-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
        rgba(0, 0, 0, 0.8) 0%,
        rgba(192, 130, 67, 0.1) 50%,
        rgba(0, 0, 0, 0.8) 100%);
    backdrop-filter: blur(15px) saturate(1.2);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

/* Animated background particles */
.auth-modal-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(192, 130, 67, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(192, 130, 67, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(192, 130, 67, 0.05) 0%, transparent 50%);
    animation: particle-float 20s ease-in-out infinite;
}

@keyframes particle-float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.5;
    }
    25% {
        transform: translateY(-20px) rotate(90deg);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-40px) rotate(180deg);
        opacity: 1;
    }
    75% {
        transform: translateY(-20px) rotate(270deg);
        opacity: 0.8;
    }
}

/* Enhanced Auth Modal Styles - Multi Step */
.auth-modal-overlay.show {
    opacity: 1;
    visibility: visible;
}

.auth-modal {
    background: rgba(40, 40, 40, 0.76);
    backdrop-filter: blur(2.95px);
    border-radius: 34px;
    width: 650px;
    height: 500px;
    position: relative;
    overflow: hidden;
    transform: scale(0.8) translateY(40px);
    transition: all 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.auth-modal::before {
    content: '';
    position: absolute;
    width: 615px;
    height: 465px;
    left: 17.5px;
    top: 17.5px;
    background: #2a2a2a;
    border-radius: 34px;
    z-index: 1;
}


.auth-modal-overlay.show .auth-modal {
    transform: scale(1) translateY(0);
}

/* Animated entrance sequence */
.auth-modal-overlay.show .auth-modal {
    animation: modal-entrance 0.9s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes modal-entrance {
    0% {
        transform: scale(0.8) translateY(40px);
        opacity: 0;
    }
    100% {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

.auth-modal-header {
    position: absolute;
    width: 35px;
    height: 35px;
    left: 580px;
    top: 32px;
    z-index: 3;
}

.auth-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    border: 2px solid #C09C4F;
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 1000;
}

.auth-modal-close:hover {
    background: rgba(192, 156, 79, 0.1);
}

.auth-modal-close::before,
.auth-modal-close::after {
    content: '';
    position: absolute;
    width: 2.54px;
    height: 21.55px;
    background: #FFFFFF;
    border-radius: 2px;
}

.auth-modal-close::before {
    transform: rotate(45deg);
}

.auth-modal-close::after {
    transform: rotate(-45deg);
}

.auth-modal-logo {
    position: absolute;
    width: 142px;
    height: 45px;
    left: 254px;
    top: 32px;
    z-index: 2;
}

.auth-modal-close:hover {
    transform: scale(1.1) rotate(180deg);
    border-color: rgba(192, 130, 67, 0.5);
    box-shadow: 0 8px 25px rgba(192, 130, 67, 0.3);
}

.auth-modal-close:hover::before {
        opacity: 1;
    }

.auth-modal-body {
    position: absolute;
    left: 17.5px;
    top: 17.5px;
    width: 615px;
    height: 465px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 20px;
}

/* Step Progress Indicator */
.auth-progress {
    position: absolute;
    top: 110px;
    left: 50px;
    right: 50px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 3;
}

/* Step 1 */
.step-1 {
    width: 140px;
    height: 38px;
    background: #C08243;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 8px;
}

.step-1 .step-number {
    width: 30px;
    height: 38px;
    background: #1D1D1D;
    border-radius: 3px 0px 0px 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 13px;
    font-weight: 700;
    font-family: 'Montserrat';
}

.step-1 .step-text {
    color: #252525;
    font-size: 11px;
    font-weight: 700;
    font-family: 'Montserrat';
    flex: 1;
    text-align: center;
}

/* Step 2 */
.step-2 {
    width: 140px;
    height: 38px;
    background: #6B6A67;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 8px;
}

.step-2 .step-number {
    width: 30px;
    height: 38px;
    background: #1D1D1D;
    border-radius: 3px 0px 0px 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 13px;
    font-weight: 700;
    font-family: 'Montserrat';
}

.step-2 .step-text {
    color: #252525;
    font-size: 11px;
    font-weight: 700;
    font-family: 'Montserrat';
    flex: 1;
    text-align: center;
}

/* Step 3 */
.step-3 {
    width: 140px;
    height: 38px;
    background: #6B6A67;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 8px;
}

.step-3 .step-number {
    width: 30px;
    height: 38px;
    background: #1D1D1D;
    border-radius: 3px 0px 0px 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 13px;
    font-weight: 700;
    font-family: 'Montserrat';
}

.step-3 .step-text {
    color: #FFFFFF;
    font-size: 11px;
    font-weight: 700;
    font-family: 'Montserrat';
    flex: 1;
    text-align: center;
}

/* Active states */
.step-1.active {
    background: #C08243;
}

.step-2.active {
    background: #C08243;
}

.step-3.active {
    background: #C08243;
}

/* Form Styles */
.auth-step {
    display: none;
    position: absolute;
    top: 120px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 450px;
    text-align: center;
}

.auth-step.active {
    display: block;
}

/* Step Headers */
.step-header h3 {
    position: absolute;
    width: 350px;
    height: 29px;
    left: 50%;
    transform: translateX(-50%);
    top: 170px;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 33px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #FFFFFF;
    margin: 0;
    z-index: 4;
}

.step-header p {
    position: absolute;
    width: 400px;
    height: 33px;
    left: 50%;
    transform: translateX(-50%);
    top: 200px;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #FFFFFF;
    margin: 0;
    z-index: 4;
}

/* Form Groups */
.form-group {
    position: relative;
    margin-bottom: 15px;
}

.form-group label {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 700;
    font-size: 13px;
    line-height: 18px;
    color: #1C1C1C;
    pointer-events: none;
    z-index: 2;
}

.form-group input {
    width: 450px;
    height: 38px;
    background: rgba(192, 156, 79, 0.73);
    border-radius: 3px;
    border: none;
    padding: 0 15px;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 700;
    font-size: 13px;
    line-height: 18px;
    color: #1C1C1C;
    outline: none;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.form-group input:focus {
    background: rgba(192, 156, 79, 0.9);
}

.form-group input::placeholder {
    color: rgba(28, 28, 28, 0.7);
}

/* Step 2 specific styles */
#step2 .form-group input {
    top: 280px;
}

#step2 .form-group label {
    display: none; /* Hide labels for step 2 - using placeholders instead */
}

/* Step 3 specific styles */
#step3 .form-group input#email {
    top: 250px;
}

#step3 .form-group input#verificationCode {
    width: 250px;
    top: 310px;
}

#step3 .form-group label {
    display: none; /* Hide labels for step 3 */
}

/* Step 1 specific styles */
#step1 .form-group input#firstName {
    top: 250px;
}

#step1 .form-group input#lastName {
    top: 310px;
}

#step1 .form-group label {
    display: none; /* Hide labels for step 1 - using placeholders instead */
}

/* Login form specific styles */
#loginStep .form-group input#loginFirstName {
    top: 250px;
}

#loginStep .form-group input#loginLastName {
    top: 310px;
}

#loginStep .form-group label {
    display: none; /* Hide labels for login form */
}

/* Navigation Buttons */
.step-navigation {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

/* Step 1 navigation */
#step1 .step-navigation {
    bottom: 60px;
}

/* Step 2 navigation */
#step2 .step-navigation {
    bottom: 60px;
}

/* Step 3 navigation */
#step3 .step-navigation {
    bottom: 60px;
    justify-content: center;
}

.auth-prev-btn,
.auth-next-btn,
.auth-send-code-btn,
.auth-submit-btn,
.auth-login-btn {
    background: #91AF6B;
    border: none;
    border-radius: 3px;
    padding: 8px 16px;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 700;
    font-size: 13px;
    line-height: 18px;
    color: #2D2D2D;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.auth-prev-btn:hover,
.auth-next-btn:hover,
.auth-send-code-btn:hover,
.auth-submit-btn:hover,
.auth-login-btn:hover {
    background: #7da55a;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.auth-prev-btn {
    background: #6B6A67;
    color: #FFFFFF;
}

.auth-prev-btn:hover {
    background: #5a5956;
}

/* Login Toggle */
.auth-toggle {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}

/* Login step navigation */
#loginStep .step-navigation {
    bottom: 120px;
}

.auth-toggle-btn {
    background: rgba(255, 190, 10, 0.84);
    border: none;
    border-radius: 3px;
    padding: 8px 16px;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 700;
    font-size: 13px;
    line-height: 18px;
    color: #2D2D2D;
    cursor: pointer;
    transition: all 0.3s ease;
}

.auth-toggle-btn:hover {
    background: rgba(255, 190, 10, 1);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Verification Code Input */
#verificationCode {
    width: 206px;
    margin: 0 auto;
    display: block;
}

#verificationGroup {
    margin-bottom: 20px;
}

/* Verification Code Lines */
.verification-lines {
    position: absolute;
    width: 200px;
    height: 0px;
    left: 50%;
    transform: translateX(-50%);
    top: 355px;
    display: flex;
    justify-content: space-between;
}

.verification-line {
    width: 33px;
    height: 2px;
    background: #1C1C1C;
}

/* Resend Code */
.resend-code-group {
    position: absolute;
    width: 140px;
    height: 25px;
    left: 50%;
    transform: translateX(-50%);
    top: 370px;
}

.resend-code-text {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    font-size: 11px;
    line-height: 15px;
    color: #FFFFFF;
    margin-bottom: 5px;
}

.resend-code-line {
    width: 114px;
    height: 1px;
    background: #FFFFFF;
    position: absolute;
    bottom: 0;
    left: 6px;
}

.resend-timer {
    position: absolute;
    right: -25px;
    top: 0;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 500;
    font-size: 8px;
    line-height: 11px;
    color: #FFFFFF;
}

.resend-code-group {
    opacity: 0.5;
    pointer-events: none;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.resend-code-group:hover {
    opacity: 1;
}

.step-header {
    text-align: center;
    margin-bottom: 25px;
}

.step-header h3 {
    color: #fff;
    font-size: 26px; /* Увеличенный размер шрифта */
    font-weight: 800; /* Более жирный шрифт */
    margin: 0 0 12px 0;
    letter-spacing: 1.2px;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.2); /* Легкая тень для читаемости */
}

.step-header p {
    color: rgba(255, 255, 255, 0.9); /* Увеличенный контраст */
    font-size: 15px; /* Немного увеличенный размер шрифта */
    margin: 0;
    line-height: 1.6;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.3); /* Легкая тень */
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
}

.form-group input {
    padding: 16px 20px;
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.08) 0%,
        rgba(255, 255, 255, 0.04) 100%);
    color: #fff;
    font-size: 16px;
    font-family: 'Montserrat', Arial, sans-serif;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    outline: none;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.form-group input::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(192, 130, 67, 0.1) 50%,
        transparent 100%);
    transition: left 0.5s ease;
}

.form-group input:focus {
    border-color: rgba(192, 130, 67, 0.6);
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.12) 0%,
        rgba(255, 255, 255, 0.08) 100%);
    box-shadow:
        0 0 0 3px rgba(192, 130, 67, 0.2),
        0 8px 25px rgba(192, 130, 67, 0.15);
    transform: translateY(-2px);
}

.form-group input:focus::before {
    left: 100%;
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.7); /* Более светлый плейсхолдер */
    transition: color 0.3s ease;
}

.form-group input:focus::placeholder {
    color: rgba(192, 130, 67, 0.9); /* Более яркий при фокусе */
}

/* Floating label effect */
.form-group {
    position: relative;
}

.form-group label {
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.85); /* Увеличенный контраст */
    font-size: 15px; /* Немного увеличенный размер шрифта */
    font-weight: 600;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
    padding: 0 5px;
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label {
    top: -10px; /* Немного выше */
    left: 15px;
    font-size: 13px; /* Немного уменьшенный размер шрифта для верхней метки */
    color: #E0A05B; /* Более яркий цвет */
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.15) 0%,
        rgba(255, 255, 255, 0.1) 100%); /* Более заметный фон */
    backdrop-filter: blur(10px);
    border-radius: 10px;
    padding: 3px 10px; /* Увеличенный padding */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2); /* Тень для выделения */
}

/* Error Messages */
.input-error {
    color: #ff6b6b;
    font-size: 12px;
    margin-top: 5px;
    display: none;
    font-weight: 500;
}

/* Button Styles */
.auth-next-btn,
.auth-prev-btn,
.auth-send-code-btn,
.auth-submit-btn,
.auth-login-btn,
.auth-toggle-btn {
    padding: 16px 28px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    background: linear-gradient(135deg,
        rgba(192, 130, 67, 0.9) 0%,
        rgba(165, 111, 53, 0.9) 50%,
        rgba(139, 69, 19, 0.9) 100%);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    font-family: 'Montserrat', Arial, sans-serif;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow:
        0 8px 25px rgba(192, 130, 67, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.auth-next-btn::before,
.auth-prev-btn::before,
.auth-send-code-btn::before,
.auth-submit-btn::before,
.auth-login-btn::before,
.auth-toggle-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.2) 50%,
        transparent 100%);
    transition: left 0.6s ease;
}

.auth-next-btn:hover,
.auth-send-code-btn:hover,
.auth-submit-btn:hover,
.auth-login-btn:hover {
    background: linear-gradient(135deg,
        rgba(139, 69, 19, 1) 0%,
        rgba(165, 111, 53, 1) 50%,
        rgba(192, 130, 67, 1) 100%);
    transform: translateY(-3px) scale(1.02);
    box-shadow:
        0 15px 40px rgba(192, 130, 67, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(192, 130, 67, 0.6);
}

.auth-next-btn:hover::before,
.auth-send-code-btn:hover::before,
.auth-submit-btn:hover::before,
.auth-login-btn:hover::before {
    left: 100%;
}

.auth-next-btn:hover,
.auth-send-code-btn:hover,
.auth-submit-btn:hover,
.auth-login-btn:hover {
    background: linear-gradient(135deg, #DD9E6C 0%, #C08243 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(192, 130, 67, 0.4);
}

.auth-prev-btn {
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0.05) 100%);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.3);
}

.auth-prev-btn:hover {
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.15) 0%,
        rgba(255, 255, 255, 0.08) 100%);
    transform: translateY(-3px) scale(1.02);
    border-color: rgba(255, 255, 255, 0.5);
}

.auth-prev-btn:hover::before {
    left: 100%;
}

.auth-toggle-btn {
    background: linear-gradient(135deg,
        rgba(192, 130, 67, 0.1) 0%,
        rgba(255, 255, 255, 0.05) 100%);
    border: 2px solid rgba(192, 130, 67, 0.5);
    color: #C08243;
    font-size: 14px;
    padding: 12px 24px;
    margin-top: 20px;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0.3px;
}

.auth-toggle-btn:hover {
    background: linear-gradient(135deg,
        rgba(192, 130, 67, 0.2) 0%,
        rgba(255, 255, 255, 0.1) 100%);
    border-color: #C08243;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(192, 130, 67, 0.3);
}

.auth-toggle-btn:hover::before {
    left: 100%;
}

/* Step Navigation */
.step-navigation {
    display: flex;
    gap: 12px;
    margin-top: 10px;
}

.step-navigation .auth-prev-btn,
.step-navigation .auth-next-btn {
    flex: 1;
}

/* Verification Code Input */
#verificationCode {
    text-align: center;
    letter-spacing: 8px;
    font-size: 20px;
    font-weight: bold;
}

/* Resend Code Button */
.resend-code-btn {
    background: none;
    border: none;
    color: #C08243;
    font-size: 12px;
    cursor: pointer;
    text-decoration: underline;
    margin-top: 5px;
    align-self: flex-start;
}

.resend-code-btn:hover {
    color: #A56F35;
}

/* Loading Spinner */
.auth-loading {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 50px 30px;
    color: #fff;
    position: relative;
}

.auth-loading::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.05) 0%,
        rgba(255, 255, 255, 0.02) 100%);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.auth-loading > * {
    position: relative;
    z-index: 1;
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(255, 255, 255, 0.2);
    border-left: 4px solid #C08243;
    border-radius: 50%;
    animation: spin 1.5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    margin-bottom: 25px;
    position: relative;
}

.loading-spinner::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border: 4px solid transparent;
    border-top: 4px solid rgba(192, 130, 67, 0.3);
    border-radius: 50%;
    animation: spin-reverse 2s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
        border-left-color: #C08243;
    }
    25% {
        border-left-color: #D4A574;
    }
    50% {
        border-left-color: #A56F35;
        transform: rotate(180deg);
    }
    75% {
        border-left-color: #D4A574;
    }
    100% {
        transform: rotate(360deg);
        border-left-color: #C08243;
    }
}

@keyframes spin-reverse {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(-360deg); }
}

.auth-loading p {
    margin: 0;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    letter-spacing: 0.5px;
    animation: pulse-text 2s ease-in-out infinite;
}

@keyframes pulse-text {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

/* Progress bar for loading */
.loading-progress {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    margin-top: 20px;
    overflow: hidden;
    position: relative;
}

.loading-progress::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
        #C08243 0%,
        #D4A574 50%,
        #A56F35 100%);
    animation: loading-progress 2s ease-in-out infinite;
}

@keyframes loading-progress {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

/* Auth Toggle */
.auth-toggle {
    text-align: center;
    margin-top: 20px;
}

/* Notification Styles */
.auth-notification {
    position: fixed;
    top: 100px;
    right: 20px;
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(20px) saturate(1.8);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: white;
    padding: 18px 24px;
    border-radius: 20px;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 700;
    font-size: 14px;
    z-index: 10001;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transform: translateX(100%) scale(0.8) rotateY(90deg);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 320px;
    position: relative;
    overflow: hidden;
}

.auth-notification::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
        rgba(192, 130, 67, 0.2) 0%,
        rgba(255, 255, 255, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.auth-notification.success {
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0.05) 100%);
}

.auth-notification.success::before {
    background: linear-gradient(135deg,
        rgba(76, 175, 80, 0.2) 0%,
        rgba(255, 255, 255, 0.1) 100%);
}

.auth-notification.show {
    transform: translateX(0) scale(1) rotateY(0deg);
}

.auth-notification.show::before {
    opacity: 1;
}

/* Notification icon styles */
.auth-notification .notification-icon {
    font-size: 20px;
    font-weight: bold;
    min-width: 24px;
    text-align: center;
    animation: icon-bounce 0.6s ease-out;
}

@keyframes icon-bounce {
    0% {
        transform: scale(0.5) rotate(-180deg);
        opacity: 0;
    }
    50% {
        transform: scale(1.2) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

/* Mobile Responsive - Auth Modal */
@media (max-width: 768px) {
    .auth-modal-overlay {
        padding: 0;
        align-items: flex-start;
        overflow-y: auto;
    }

    .auth-modal {
        width: 100%;
        margin: 0;
        max-height: 100vh;
        border-radius: 0;
        min-height: 100vh;
        transform: none;
        position: relative;
    }

    .auth-modal-overlay.show .auth-modal {
        transform: none;
    }

    .auth-modal-header {
        padding: 20px 15px 15px;
        position: sticky;
        top: 0;
        background: rgba(0, 0, 0, 0.9);
        backdrop-filter: blur(10px);
        z-index: 100;
    }

    .auth-modal-logo {
        width: 60px;
    }

    .auth-modal-close {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .auth-modal-body {
        padding: 20px 15px;
        overflow-y: auto;
        max-height: calc(100vh - 80px);
    }
    
    /* Cloudflare Turnstile адаптация */
    .cf-turnstile {
        transform: scale(0.8);
        transform-origin: center;
        margin: 15px 0;
        max-width: 100%;
    }
    
    /* Форма авторизации */
    .form {
        padding: 15px;
        max-width: 100%;
    }
    
    .form .title {
        font-size: 22px;
        margin-bottom: 15px;
    }
    
    .form .message {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    /* Поля ввода */
    .form label {
        margin-bottom: 15px;
    }
    
    .form .input {
        padding: 12px 10px;
        font-size: 16px;
        border-radius: 8px;
    }
    
    .form .input + span {
        font-size: 13px;
        top: -6px;
        left: 10px;
        padding: 0 6px;
    }
    
    /* Кнопки */
    .form .submit,
    .form .sign {
        padding: 12px 15px;
        font-size: 15px;
        border-radius: 8px;
        margin-top: 15px;
    }
    
    /* Ссылки */
    .form .signin,
    .form .signup {
        font-size: 13px;
        margin-top: 15px;
    }
    }

    .progress-bar {
        height: 6px;
    }

    .progress-step .step-number {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }

    .progress-steps {
        flex-direction: column;
        gap: 15px;
    }

    .progress-step:not(:last-child)::after {
        top: 30px;
        left: 17px;
        right: auto;
        width: 2px;
        height: 15px;
    }

    .step-navigation {
        flex-direction: column;
        gap: 15px;
    }

    .step-navigation .auth-prev-btn,
    .step-navigation .auth-next-btn {
        width: 100%;
        padding: 14px 20px;
    }

    .auth-next-btn,
    .auth-prev-btn,
    .auth-send-code-btn,
    .auth-submit-btn,
    .auth-login-btn,
    .auth-toggle-btn {
        padding: 14px 20px;
        font-size: 15px;
    }

    .form-group input {
        padding: 14px 18px;
        font-size: 15px;
    }

    .loading-spinner {
        width: 50px;
        height: 50px;
    }

    .auth-notification {
        top: 80px;
        right: 15px;
        left: 15px;
        max-width: none;
        transform: translateY(-100%) scale(0.8);
    }

    .auth-notification.show {
        transform: translateY(0) scale(1);
}

.auth-modal-overlay.show {
    opacity: 1;
    visibility: visible;
}

.auth-modal {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    max-width: 450px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    transform: scale(0.9) translateY(20px);
    transition: all 0.3s ease;
    font-family: 'Montserrat', Arial, sans-serif;
}

.auth-modal-overlay.show .auth-modal {
    transform: scale(1) translateY(0);
}

.auth-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 30px 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.auth-modal-header h2 {
    margin: 0;
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 1px;
}

.auth-modal-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    padding: 0;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.auth-modal-close:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(90deg);
}

.auth-modal-body {
    padding: 30px;
}

/* Google Login Button */
.google-login-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 14px 20px;
    font-size: 16px;
    font-weight: 600;
    color: #3c4043;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 25px;
    font-family: 'Montserrat', Arial, sans-serif;
}

.google-login-btn:hover {
    background: #f8f9fa;
    border-color: #dadce0;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.google-icon {
    flex-shrink: 0;
}

/* Divider */
.divider {
    position: relative;
    text-align: center;
    margin: 25px 0;
}

.divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.divider-text {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    padding: 0 15px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    font-weight: 500;
}

/* Form Styles */
.auth-form {
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.form-group input {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-size: 16px;
    font-family: 'Montserrat', Arial, sans-serif;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus {
    outline: none;
    border-color: #C08243;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 0 3px rgba(192, 130, 67, 0.2);
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

/* Form Options */
.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    flex-wrap: wrap;
    gap: 10px;
}

.checkbox-container {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    user-select: none;
}

.checkbox-container input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    margin-right: 10px;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.checkbox-container input[type="checkbox"]:checked + .checkmark {
    background: #C08243;
    border-color: #C08243;
}

.checkbox-container input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: -2px;
    left: 2px;
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.forgot-password,
.terms-link {
    color: #C08243;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.forgot-password:hover,
.terms-link:hover {
    color: #A56F35;
    text-decoration: underline;
}

/* Submit Button */
.auth-submit-btn {
    flex: 1;
    background: linear-gradient(135deg, #C08243 0%, #DD9E6C 100%);
    border: none;
    border-radius: 12px;
    color: #363636;
    padding: 16px;
    color: white;
    font-size: 16px;
    font-weight: 700;
    font-family: 'Montserrat', Arial, sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.auth-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(192, 130, 67, 0.4);
}

.auth-submit-btn:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(192, 130, 67, 0.3);
}

/* Secondary Button */
.auth-secondary-btn {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 12px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Montserrat', Arial, sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0;
}

.auth-secondary-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Registration Progress */
.registration-progress {
    margin-bottom: 30px;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 15px;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #C08243 0%, #DD9E6C 50%, #C08243 100%);
    border-radius: 3px;
    width: 33%;
    transition: width 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
}

.progress-fill::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: progressShine 2s ease-in-out infinite;
}

@keyframes progressShine {
    0%, 100% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
}

.progress-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.progress-step {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.progress-step.active {
    background: #C08243;
    border-color: #C08243;
    color: #fff;
    box-shadow: 0 0 0 3px rgba(192, 130, 67, 0.3);
}

.progress-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    text-align: center;
    display: block;
}

/* Registration Steps */
.registration-step {
    animation: stepFadeIn 0.4s ease;
}

@keyframes stepFadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Form Actions */
.form-actions {
    display: flex;
    gap: 10px;
    margin-top: 25px;
    width: 100%;
}

/* Single button in form-actions */
.form-actions:has(button:only-child) button {
    flex: none;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
}

/* Auth Toggle */
.auth-toggle {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.auth-toggle span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin-right: 8px;
}

.auth-toggle-btn {
    background: none;
    border: none;
    color: #C08243;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    text-decoration: underline;
    transition: all 0.3s ease;
}

.auth-toggle-btn:hover {
    color: #A56F35;
    text-decoration: none;
}

@keyframes modal-appear {
    0% {
        transform: scale(0.7);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.espresso-image-updated {
    width: 100%;
    max-width: 400px;
    height: auto;
    object-fit: contain;
    margin-top: 20px;
}

/* Медиа-запросы для адаптивности */

/* Очень маленькие экраны (до 360px) - для самых компактных телефонов */
@media (max-width: 480px) {
    .main-container {
        padding: 15px;
        max-width: 100%;
    }

    .logo {
        width: 70px;
        max-width: 100px;
        margin-bottom: 15px;
    }

    .title {
        font-size: clamp(18px, 5vw, 24px);
        margin-bottom: 18px;
        line-height: 1.1;
    }

    .info-description-block {
        font-size: clamp(12px, 3.5vw, 16px);
        margin-bottom: 20px;
        line-height: 1.4;
    }

    .espresso-image-updated {
        max-width: 280px;
        margin-top: 15px;
    }

    .tap-to-go {
        margin: 20px 0;
        padding: 12px 20px;
    }

    .tap-circle {
        width: 14px;
        height: 14px;
        margin-right: 10px;
    }

    .tap-dot {
        width: 5px;
        height: 5px;
    }

    .tap-text {
        font-size: 14px;
        letter-spacing: 0.5px;
    }

    /* Language selector on mobile */
    .lang-toggle-btn {
        background: rgba(0, 0, 0, 0.8);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 25px;
        padding: 6px 12px;
        min-width: 60px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        backdrop-filter: blur(10px);
        font-size: 12px;
        height: 32px;
    }

    .lang-toggle-btn:hover,
    .lang-toggle-btn:active {
        background: rgba(0, 0, 0, 0.9);
        transform: scale(1.02);
        box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
    }

    .lang-toggle-btn:active {
        transform: scale(0.98);
        transition-duration: 0.1s;
    }

    .lang-menu {
        position: absolute;
        top: 100%;
        right: 0;
        margin-top: 5px;
        background: rgba(0, 0, 0, 0.9);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 8px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
        z-index: 1000;
        min-width: 60px;
    }

    .lang-menu-item {
        padding: 8px 12px;
        border: none;
        background: none;
        color: #fff;
        text-align: left;
        font-size: 12px;
        cursor: pointer;
        transition: background 0.3s ease;
    }

    .lang-menu-item:hover {
        background: rgba(255, 255, 255, 0.1);
    }

    .lang-menu-item.active {
        background: rgba(243, 190, 44, 0.2);
        color: #F3BE2C;
    }

    .modal-content {
        max-width: 98vw;
        border-radius: 10px;
        padding: 0;
    }

    .modal-header {
        padding: 15px 15px 10px;
    }

    .modal-logo {
        width: 50px;
    }

    .modal-nav {
        padding: 12px 15px;
        gap: 6px;
    }

    /* Page headers on mobile */
    .shop-header {
        height: 70px;
        padding: 0 15px;
    }

    .shop-header .logo {
        width: 50px;
        max-width: 70px;
        margin-bottom: 0;
        align-self: center;
    }

    .shop-header .burger-menu-btn {
        width: 45px;
        height: 45px;
    }

    .shop-main-title {
        padding-top: 90px;
    }

    .main-title-text {
        font-size: 36px;
        letter-spacing: 4px;
    }

    /* Site header on mobile */
    .site-header {
        height: 60px;
        padding: 0 15px;
    }

    .site-header .logo {
        width: 50px;
        max-width: 70px;
        margin-bottom: 0;
        align-self: center;
    }

    .site-header .burger-menu-btn {
        width: 45px;
        height: 45px;
    }

    /* Main content padding for mobile */
    .site-header + .main-content,
    .site-header + main {
        padding-top: 100px;
    }

    /* Roastery header on mobile - увеличенная высота */
    .roastery-header {
        height: 80px;
        padding: 0 15px;
    }

    .roastery-header .logo {
        width: 10px;
        max-width: 15px;
        margin-bottom: 0;
        align-self: center;
    }

    .roastery-header .burger-menu-btn {
        width: 25px;
        height: 25px;
    }

    .roastery-content {
        padding-top: 100px;
    }

    .nav-item {
        padding: 10px 12px;
        border-radius: 8px;
    }

    .nav-icon {
        font-size: 18px;
        margin-right: 10px;
        width: 18px;
        height: 18px;
    }

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

    .nav-text {
        font-size: 12px;
        letter-spacing: 0.5px;
    }

    .modal-auth {
        padding: 10px 15px 15px;
    }

    .auth-btn {
        padding: 10px 18px;
        font-size: 12px;
    }

    .auth-icon {
        font-size: 16px;
        margin-right: 8px;
    }

    /* Оптимизация анимаций для маленьких экранов */
    .nav-item:hover {
        transform: translateY(-1px);
        box-shadow: 0 6px 20px rgba(192, 130, 67, 0.2);
    }

    .auth-btn:hover {
        transform: translateY(-1px);
        box-shadow: 0 6px 20px rgba(192, 130, 67, 0.3);
    }

    /* Mobile auth modal adjustments */
    .auth-modal {
        width: 95%;
        margin: 20px;
        max-height: 85vh;
    }

    .auth-modal-header {
        padding: 20px 25px 12px;
    }

    .auth-modal-header h2 {
        font-size: 22px;
    }

    .auth-modal-body {
        padding: 25px;
    }

    .google-login-btn {
        padding: 12px 16px;
        font-size: 15px;
    }

    .form-group input {
        padding: 12px 14px;
        font-size: 16px; /* Prevent zoom on iOS */
    }

    .auth-submit-btn {
        padding: 14px;
        font-size: 15px;
    }

    .form-options {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .form-actions {
        flex-direction: row;
        gap: 8px;
    }

    .checkbox-container {
        font-size: 13px;
    }
}

    .modal-header {
        padding: 18px 18px 12px;
    }

    .modal-logo {
        width: 55px;
    }

    .modal-nav {
        padding: 14px 18px;
        gap: 7px;
    }

    .nav-item {
        padding: 11px 14px;
    }

    .nav-icon {
        font-size: 19px;
        margin-right: 11px;
        width: 19px;
        height: 19px;
    }

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

    .nav-text {
        font-size: 13px;
    }

    .modal-auth {
        padding: 12px 18px 18px;
    }

    .auth-btn {
        padding: 11px 20px;
        font-size: 13px;
    }

    .auth-icon {
        font-size: 17px;
        margin-right: 9px;
    }

    .nav-item {
        padding: 12px 16px;
    }

    .tap-dot {
        width: 5px;
        height: 5px;
    }

    .tap-text {
        font-size: 14px;
    }

    /* Адаптивные стили для фона на мобильных */
    body {
        background-attachment: scroll;
    }

    body::before {
        background: linear-gradient(to right, rgba(26, 26, 26, 0.8), rgba(13, 13, 13, 0.8));
    }

    .modal-content {
        max-width: 95vw;
        border-radius: 12px;
    }

    .modal-header {
        padding: 20px 20px 12px;
    }

    .modal-logo {
        width: 60px;
    }

    .modal-close {
        width: 35px;
        height: 35px;
        font-size: 24px;
    }

    .modal-nav {
        padding: 15px 20px;
        gap: 8px;
    }

    .nav-item {
        padding: 12px 16px;
    }

    .nav-icon {
        font-size: 20px;
        margin-right: 12px;
        width: 20px;
        height: 20px;
    }

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

    .nav-text {
        font-size: 14px;
    }

    .modal-auth {
        padding: 12px 20px 20px;
    }

    .auth-btn {
        padding: 12px 20px;
        font-size: 14px;
    }

    .auth-icon {
        font-size: 18px;
        margin-right: 10px;
    }

    .title {
        font-size: clamp(28px, 4vw, 40px);
    }

    .info-description-block {
        max-width: 700px;
        font-size: clamp(14px, 2vw, 17px);
    }

    .espresso-image-updated {
        max-width: 350px;
    }

    .tap-to-go {
        margin: 25px 0;
    }

    .modal-header {
        padding: 22px 25px 13px;
    }

    .modal-logo {
        width: 70px;
    }

    .modal-nav {
        padding: 18px 25px;
        gap: 9px;
    }

    .nav-item {
        padding: 13px 18px;
    }

    .nav-icon {
        font-size: 22px;
        margin-right: 13px;
        width: 22px;
        height: 22px;
    }

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

    .nav-text {
        font-size: 15px;
    }

    .modal-auth {
        padding: 13px 25px 22px;
    }

    .auth-btn {
        padding: 13px 22px;
        font-size: 15px;
    }

    .auth-icon {
        font-size: 19px;
        margin-right: 11px;
    }

    .logo {
        width: 130px;
        max-width: 150px;
    }
/* Large screens */
@media (min-width: 1200px) {
    .title {
        font-size: clamp(32px, 3vw, 48px);
    }

    .info-description-block {
        max-width: 800px;
        font-size: clamp(16px, 1.5vw, 18px);
    }

    .espresso-image-updated {
        max-width: 400px;
    }
}

/* Back to Home Button */
.back-to-home {
    margin-bottom: 20px;
}

.back-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(192, 130, 67, 0.1), rgba(165, 111, 53, 0.1));
    border: 2px solid rgba(192, 130, 67, 0.3);
    border-radius: 12px;
    padding: 12px 20px;
    color: #FFFFFF;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.back-btn:hover {
    background: linear-gradient(135deg, #C08243, #A56F35);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(192, 130, 67, 0.4);
    border-color: #A56F35;
}

.back-arrow {
    font-size: 16px;
    transition: all 0.3s ease;
}

.back-btn:hover .back-arrow {
    transform: translateX(-3px);
}

.back-text {
    transition: all 0.3s ease;
}

/* Contact Page Styles */
.contact-section {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Locations Grid Layout */
.locations-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    width: 100%;
}

.location-block {
    background: #1C1C1C;
    backdrop-filter: blur(15px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.location-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(192, 130, 67, 0.3);
}

.location-header {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 25px 30px;
    background: linear-gradient(135deg, rgba(192, 130, 67, 0.1), rgba(165, 111, 53, 0.1));
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.location-dot {
    width: 15px;
    height: 15px;
    background: linear-gradient(135deg, #C08243, #A56F35);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(192, 130, 67, 0.5);
    flex-shrink: 0;
}

.location-title {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 700;
    font-size: clamp(16px, 3vw, 20px);
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.map-container {
    width: 100%;
    height: 250px;
    background: #2a2a2a;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.map-placeholder {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 700;
    font-size: 48px;
    color: rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 5px;
}

/* Google Maps iframe embed */
.map-embed {
    width: 100%;
    height: 200px;
    border: none;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.map-embed:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    transform: translateY(-2px);
}

.location-info {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.work-time-section,
.contacts-section {
    padding: 25px 30px;
}

.contacts-section {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.work-time-header,
.contacts-header {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: #C08243;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0 0 15px 0;
    background: rgba(192, 130, 67, 0.1);
    padding: 8px 15px;
    border-radius: 20px;
    display: inline-block;
    border: 1px solid rgba(192, 130, 67, 0.2);
}

.work-time-details,
.contacts-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.work-time-details p,
.contacts-details p {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.4;
    padding: 5px 0;
}

/* Desktop Grid Layout */
@media (min-width: 1024px) {
    .contact-section {
        padding: 30px;
    }
    
    .locations-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .location-info {
        flex-direction: row;
    }
    
    .work-time-section,
    .contacts-section {
        flex: 1;
        padding: 20px;
    }
    
    .contacts-section {
        border-top: none;
        border-left: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .map-container {
        height: 200px;
    }
    
    .map-placeholder {
        font-size: 36px;
    }

    .map-embed {
        height: 180px;
    }
}

/* Tablet Layout */
@media (min-width: 768px) and (max-width: 1023px) {
    .contact-section {
        padding: 25px;
    }
    
    .locations-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }
    
    .location-info {
        flex-direction: column;
    }
    
    .map-container {
        height: 180px;
    }
    
    .map-placeholder {
        font-size: 32px;
    }

    .map-embed {
        height: 160px;
    }
}

/* Mobile Layout */
@media (max-width: 767px) {
    .contact-section {
        padding: 15px;
    }
    
    .locations-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .location-header {
        padding: 20px;
    }
    
    .location-dot {
        width: 12px;
        height: 12px;
    }
    
    .location-title {
        font-size: 16px;
    }
    
    .map-container {
        height: 200px;
    }
    
    .map-placeholder {
        font-size: 28px;
        letter-spacing: 3px;
    }

    .map-embed {
        height: 140px;
    }
    
    .work-time-section,
    .contacts-section {
        padding: 20px;
    }
    
    .work-time-header,
    .contacts-header {
        font-size: 12px;
        padding: 6px 12px;
    }
    
    .work-time-details p,
    .contacts-details p {
        font-size: 13px;
    }
}

/* Very small screens */
@media (max-width: 480px) {
    .contact-section {
        padding: 10px;
    }
    
    .locations-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .location-header {
        padding: 15px;
        gap: 10px;
    }
    
    .location-title {
        font-size: 14px;
    }
    
    .map-container {
        height: 150px;
    }
    
    .map-placeholder {
        font-size: 20px;
        letter-spacing: 2px;
    }

    .map-embed {
        height: 120px;
    }
    
    .work-time-section,
    .contacts-section {
        padding: 15px;
    }
    
    .work-time-details p,
    .contacts-details p {
        font-size: 12px;
    }
}

/* Map overlay link styles */
.map-overlay-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 10;
    background: transparent;
    text-decoration: none;
    cursor: pointer;
}

.map-overlay-link:hover .map-link-text {
    opacity: 1;
    transform: translateY(0);
}

.map-link-text {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 12px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    pointer-events: none;
}

/* Ensure map container is positioned relatively */
.map-container {
    position: relative;
    display: block;
}

/* Shop Page Styles */
.shop-page .top-navigation {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1000;
    display: flex;
    align-items: center;
    font-family: 'Montserrat', Arial, sans-serif;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.shop-page .burger-menu-btn {
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Cart Icon Container */
.cart-icon-container {
    position: fixed;
    top: 20px;
    right: 120px;
    z-index: 1000;
}

.cart-icon-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    color: #fff;
    font-size: 18px;
}

.cart-icon-btn:hover {
    background: rgba(192, 130, 67, 0.3);
    border-color: #C08243;
    transform: scale(1.05);
}

.cart-counter {
    position: absolute;
    top: -8px;
    right: -8px;
    background: linear-gradient(135deg, #C08243 0%, #DD9E6C 100%);
    color: #363636;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    font-family: 'Montserrat', Arial, sans-serif;
    box-shadow: 0 2px 5px rgba(192, 130, 67, 0.4);
}

/* Shop Section */
.shop-section {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}

/* Category Section */
.category-section {
    margin-bottom: 60px;
    animation: fadeInUp 0.6s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Category Title */
.category-title {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    gap: 20px;
}

.category-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, rgba(192, 130, 67, 0.5) 50%, transparent 100%);
}

.category-text {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 700;
    font-size: 32px;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 3px;
    background: linear-gradient(135deg, #FFFFFF 0%, #C08243 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

/* Products Carousel */
.products-carousel {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Carousel Buttons */
.carousel-btn {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: rgba(25, 25, 25, 0.8);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(192, 130, 67, 0.3);
    border-radius: 50%;
    color: #C08243;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: linear-gradient(135deg, #C08243 0%, #DD9E6C 100%);
    border-color: #A56F35;
    color: white;
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(192, 130, 67, 0.4);
}

.carousel-btn:active {
    transform: scale(0.95);
}

/* Category Filter */
.category-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
    padding: 20px;
    background: rgba(25, 25, 25, 0.6);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.category-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 12px 24px;
    color: #fff;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.category-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(192, 130, 67, 0.3), transparent);
    transition: left 0.5s;
}

.category-btn:hover::before {
    left: 100%;
}

.category-btn:hover {
    background: rgba(192, 130, 67, 0.2);
    border-color: #C08243;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(192, 130, 67, 0.3);
}

.category-btn.active {
    background: linear-gradient(135deg, #C08243 0%, #DD9E6C 100%);
    border-color: #A56F35;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(192, 130, 67, 0.4);
}

.category-btn.active:hover {
    background: linear-gradient(135deg, #DD9E6C 0%, #C08243 100%);
}

/* Products Grid - Horizontal Scroll */
.products-grid {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px 0;
    scrollbar-width: thin;
    scrollbar-color: #C08243 rgba(255, 255, 255, 0.1);
}

.products-grid::-webkit-scrollbar {
    height: 8px;
}

.products-grid::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.products-grid::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, #C08243 0%, #DD9E6C 100%);
    border-radius: 10px;
}

.products-grid::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(90deg, #A56F35 0%, #8B4513 100%);
}

/* Product Card */
.product-card {
    flex: 0 0 300px;
    background: rgba(25, 25, 25, 0.8);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    cursor: pointer;
    animation: cardFadeIn 0.6s ease;
}

@keyframes cardFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.product-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(192, 130, 67, 0.3);
}

/* Product Badge */
.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #C08243 0%, #DD9E6C 100%);
    color: #363636;
    padding: 5px 12px;
    border-radius: 20px;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 700;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(192, 130, 67, 0.4);
    animation: badgePulse 2s infinite;
}

.product-badge.sale {
    background: linear-gradient(135deg, #FF4444 0%, #CC0000 100%);
}

@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Product Image */
.product-image {
    position: relative;
    height: 250px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(192, 130, 67, 0.1), rgba(165, 111, 53, 0.1));
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
    filter: brightness(0.9);
}

.product-card:hover .product-img {
    transform: scale(1.1);
    filter: brightness(1.1);
}

/* Product Overlay */
.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.quick-view-btn {
    background: linear-gradient(135deg, #C08243 0%, #DD9E6C 100%);
    border: none;
    border-radius: 25px;
    padding: 12px 24px;
    color: white;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    transform: translateY(20px);
}

.product-card:hover .quick-view-btn {
    transform: translateY(0);
}

.quick-view-btn:hover {
    background: linear-gradient(135deg, #DD9E6C 0%, #C08243 100%);
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(192, 130, 67, 0.4);
}

/* Product Info */
.product-info {
    padding: 25px;
}

.product-name {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 15px 0;
    line-height: 1.2;
}

/* Product Rating */
.product-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
}

.stars {
    color: #C08243;
    font-size: 16px;
    letter-spacing: 2px;
}

.rating-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-weight: 500;
}

/* Product Price */
.product-price {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.price {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: #C08243;
    background: linear-gradient(135deg, #C08243 0%, #C08243 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.old-price {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 500;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: line-through;
}

/* New Styled Button for Cart */
.styled-wrapper .button {
    display: block;
    position: relative;
    width: 50px;
    height: 50px;
    margin: 0;
    overflow: hidden;
    outline: none;
    background-color: transparent;
    cursor: pointer;
    border: 0;
}

.styled-wrapper .button:before {
    content: "";
    position: absolute;
    border-radius: 50%;
    inset: 5px;
    border: 2px solid #C08243;
    transition:
        opacity 0.4s cubic-bezier(0.77, 0, 0.175, 1) 80ms,
        transform 0.5s cubic-bezier(0.455, 0.03, 0.515, 0.955) 80ms;
}

.styled-wrapper .button:after {
    content: "";
    position: absolute;
    border-radius: 50%;
    inset: 5px;
    border: 3px solid #DD9E6C;
    transform: scale(1.3);
    transition:
        opacity 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
        transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0;
}

.styled-wrapper .button:hover:before,
.styled-wrapper .button:focus:before {
    opacity: 0;
    transform: scale(0.7);
    transition:
        opacity 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
        transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.styled-wrapper .button:hover:after,
.styled-wrapper .button:focus:after {
    opacity: 1;
    transform: scale(1);
    transition:
        opacity 0.4s cubic-bezier(0.77, 0, 0.175, 1) 80ms,
        transform 0.5s cubic-bezier(0.455, 0.03, 0.515, 0.955) 80ms;
}

.styled-wrapper .button-box {
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
}

.styled-wrapper .button-elem {
    display: block;
    width: 20px;
    height: 20px;
    margin: 16px 12px 0 14px;
    transform: rotate(360deg);
    fill: #C08243;
}

.styled-wrapper .button:hover .button-box,
.styled-wrapper .button:focus .button-box {
    transition: 0.4s;
    transform: translateX(-45px);
}

/* Universal Modern Close Button */
.universal-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #C08243 0%, #DD9E6C 100%);
    border: 2px solid rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1000;
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.4),
        0 4px 12px rgba(192, 130, 67, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    overflow: hidden;
}

.universal-close-btn::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 2px;
    background: #FFFFFF;
    border-radius: 1px;
    transform: rotate(45deg);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 0 0 rgba(255, 255, 255, 0);
}

.universal-close-btn::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 2px;
    background: #FFFFFF;
    border-radius: 1px;
    transform: rotate(-45deg);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 0 0 rgba(255, 255, 255, 0);
}

.universal-close-btn:hover {
    background: linear-gradient(135deg, #DD9E6C 0%, #C08243 100%);
    transform: scale(1.15) rotate(90deg);
    box-shadow: 
        0 12px 35px rgba(0, 0, 0, 0.5),
        0 6px 18px rgba(192, 130, 67, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-color: #FFFFFF;
}

.universal-close-btn:hover::before,
.universal-close-btn:hover::after {
    background: #FFFFFF;
    transform: rotate(45deg) scale(1.1);
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
}

.universal-close-btn:active {
    transform: scale(1.05) rotate(90deg);
    box-shadow: 
        0 6px 20px rgba(0, 0, 0, 0.4),
        0 3px 10px rgba(192, 130, 67, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* Glow effect on hover */
.universal-close-btn::before {
    animation: closeGlow 2s ease-in-out infinite;
}

.universal-close-btn::after {
    animation: closeGlow 2s ease-in-out infinite 0.1s;
}

@keyframes closeGlow {
    0%, 100% { 
        box-shadow: 0 0 0 rgba(255, 255, 255, 0);
    }
    50% { 
        box-shadow: 0 0 4px rgba(255, 255, 255, 0.3);
    }
}

/* Mobile Responsive for Universal Close Button */
@media (max-width: 768px) {
    .universal-close-btn {
        width: 40px;
        height: 40px;
        top: 12px;
        right: 12px;
    }
    
    .universal-close-btn::before,
    .universal-close-btn::after {
        width: 18px;
        height: 2px;
    }
}

@media (max-width: 480px) {
    .universal-close-btn {
        width: 35px;
        height: 35px;
        top: 10px;
        right: 10px;
    }
    
    .universal-close-btn::before,
    .universal-close-btn::after {
        width: 16px;
        height: 2px;
    }
}

/* Body scroll lock when modal is open */
body.modal-open {
    overflow: hidden !important;
    position: fixed !important;
    width: 100% !important;
    height: 100% !important;
    top: 0 !important;
    left: 0 !important;
}

/* Product Modal Styles - Modern & Unique */
.product-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(15px) saturate(180%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.product-modal-overlay.show {
    opacity: 1;
    visibility: visible;
}

.product-modal-content {
    position: relative;
    width: 90%;
    max-width: 900px;
    max-height: 85vh;
    background: linear-gradient(145deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    border: 2px solid transparent;
    border-radius: 25px;
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.8),
        0 15px 40px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transform: scale(0.7) translateY(100px) rotateX(15deg);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow: visible;
    position: relative;
}

.product-modal-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 25px;
    padding: 2px;
    background: linear-gradient(135deg, #C08243, #DD9E6C, #C08243, #DD9E6C);
    background-size: 300% 300%;
    animation: gradientShift 3s ease infinite;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    z-index: -1;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.product-modal-overlay.show .product-modal-content {
    transform: scale(1) translateY(0) rotateX(0deg);
}

.product-modal-close {
    position: absolute;
    top: -15px;
    right: -15px;
    background: linear-gradient(135deg, #C08243 0%, #DD9E6C 100%);
    border: 3px solid rgba(255, 255, 255, 0.95);
    color: #FFFFFF;
    font-size: 20px;
    cursor: pointer;
    padding: 10px;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 2001;
    font-weight: bold;
    line-height: 1;
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.6),
        0 4px 12px rgba(192, 130, 67, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.product-modal-close:hover {
    background: linear-gradient(135deg, #DD9E6C 0%, #C08243 100%);
    transform: scale(1.2) rotate(90deg);
    box-shadow: 
        0 12px 35px rgba(0, 0, 0, 0.7),
        0 6px 18px rgba(192, 130, 67, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-color: #FFFFFF;
}

.product-modal-body {
    display: flex;
    gap: 40px;
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.product-modal-body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(192, 130, 67, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(221, 158, 108, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.product-modal-image {
    flex: 1;
    min-width: 350px;
    position: relative;
    z-index: 1;
}

.product-image-large {
    width: 100%;
    height: 450px;
    border-radius: 20px;
    object-fit: cover;
    display: block;
    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.4),
        0 8px 20px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.product-image-large:hover {
    transform: scale(1.02);
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.5),
        0 12px 25px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.image-overlay-large {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(192, 130, 67, 0.1) 0%, 
        rgba(0, 0, 0, 0.2) 50%, 
        rgba(221, 158, 108, 0.1) 100%);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.product-modal-info {
    flex: 1;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 25px;
    position: relative;
    z-index: 1;
}

.product-modal-title {
    font-size: 24px;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: linear-gradient(135deg, #FFFFFF 0%, #C08243 50%, #DD9E6C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.product-modal-description {
    position: relative;
}

.product-modal-description p {
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    max-height: 200px;
    overflow-y: auto;
    overflow-x: hidden;
    word-wrap: break-word;
    word-break: break-word;
    white-space: pre-wrap;
}

/* Scrollbar styles for description */
.product-modal-description p::-webkit-scrollbar {
    width: 8px;
}

.product-modal-description p::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.product-modal-description p::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #C08243, #DD9E6C);
    border-radius: 10px;
}

.product-modal-description p::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #DD9E6C, #C08243);
}

/* News Modal Scrollbar Styles */
.news-modal-text::-webkit-scrollbar {
    width: 8px;
}

.news-modal-text::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.news-modal-text::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #C08243, #DD9E6C);
    border-radius: 10px;
}

.news-modal-text::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #DD9E6C, #C08243);
}

.product-modal-description p::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #C08243, #DD9E6C, #C08243);
    background-size: 200% 100%;
    animation: shimmer 2s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.product-modal-price {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 0;
    border-top: 2px solid rgba(192, 130, 67, 0.3);
    border-bottom: 2px solid rgba(221, 158, 108, 0.3);
    position: relative;
}

.product-modal-price::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #C08243, transparent);
}

.price-label {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-value-large {
    font-size: 28px;
    font-weight: 800;
    color: #FFFFFF;
    background: linear-gradient(135deg, #C08243, #DD9E6C);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.product-modal-actions {
    margin-top: auto;
    position: relative;
}

.add-to-cart-modal-btn {
    width: 100%;
    background: linear-gradient(135deg, #C08243 0%, #DD9E6C 100%);
    border: none;
    border-radius: 20px;
    padding: 18px 30px;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 8px 25px rgba(192, 130, 67, 0.3),
        0 4px 12px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.add-to-cart-modal-btn::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.5s ease;
}

.add-to-cart-modal-btn:hover::before {
    left: 100%;
}

.add-to-cart-modal-btn:hover {
    background: linear-gradient(135deg, #DD9E6C 0%, #C08243 100%);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 15px 35px rgba(192, 130, 67, 0.4),
        0 8px 18px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.add-to-cart-modal-btn:active {
    transform: translateY(-1px) scale(0.98);
}

.add-to-cart-modal-btn i {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.add-to-cart-modal-btn:hover i {
    transform: scale(1.1);
}

/* Mobile Responsive - Fixed Position */
@media (max-width: 768px) {
    .product-modal-overlay {
        align-items: center;
        justify-content: center;
        padding: 0;
        overflow: hidden;
    }

    .product-modal-content {
        width: 90%;
        max-width: 450px;
        margin: 0;
        max-height: 85vh;
        min-height: auto;
        overflow-y: auto;
        position: relative;
        transform: scale(1) !important;
        border-radius: 20px;
        display: flex;
        flex-direction: column;
    }

    .product-modal-overlay.show .product-modal-content {
        transform: scale(1) !important;
    }

    .product-modal-body {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
        flex: 1;
    }

    .product-modal-image {
        min-width: auto;
        flex: none;
        width: 100%;
    }

    .product-image-large {
        height: 250px;
        max-height: 35vh;
        width: 100%;
        object-fit: cover;
    }

    .product-modal-info {
        gap: 12px;
    }

    .product-modal-title {
        font-size: 20px;
        line-height: 1.3;
    }

    .product-modal-description p {
        font-size: 14px;
        padding: 12px;
        line-height: 1.5;
        max-height: 150px;
    }

    .price-value-large {
        font-size: 22px;
    }

    .add-to-cart-modal-btn {
        padding: 14px 25px;
        font-size: 15px;
        width: 100%;
        justify-content: center;
    }

    .product-modal-close {
        top: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
        font-size: 18px;
        position: absolute;
        z-index: 10001;
    }
}

@media (max-width: 480px) {
    .product-modal-overlay {
        padding: 15px;
    }

    .product-modal-content {
        width: 100%;
        margin: 0;
        border-radius: 15px;
        max-height: 85vh;
        min-height: auto;
    }

    .product-modal-body {
        padding: 15px;
        gap: 12px;
    }

    .product-modal-image {
        width: 100%;
    }

    .product-image-large {
        height: 200px;
        max-height: 30vh;
        border-radius: 12px;
        width: 100%;
    }

    .product-modal-title {
        font-size: 18px;
        line-height: 1.2;
    }

    .product-modal-description p {
        font-size: 13px;
        padding: 10px;
        border-radius: 10px;
        line-height: 1.4;
        max-height: 120px;
    }

    .product-modal-price {
        padding: 10px 0;
    }

    .price-value-large {
        font-size: 20px;
    }

    .add-to-cart-modal-btn {
        padding: 12px 20px;
        font-size: 14px;
        border-radius: 10px;
        width: 100%;
    }

    .product-modal-close {
        top: 8px;
        right: 8px;
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
}

/* Order Success Page Styles - Full Page */
.order-success-container {
    min-height: 100vh;
    width: 100vw;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    overflow: hidden;
    font-family: 'Montserrat', Arial, sans-serif;
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 9999;
}

.order-success-container.animate-in {
    opacity: 1;
    transform: scale(1);
}

/* Background Elements - Disabled */
.success-bg-elements {
    display: none;
}

.bg-circle {
    display: none;
}

.circle-1 {
    display: none;
}

.circle-2 {
    display: none;
}

.circle-3 {
    display: none;
}

.bg-gradient {
    display: none;
}

.gradient-1 {
    display: none;
}

.gradient-2 {
    display: none;
}

/* Main Content */
.success-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.5),
        0 15px 40px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Success Icon */
.success-icon-container {
    position: relative;
    margin-bottom: 40px;
    display: inline-block;
}

.success-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #C08243 0%, #DD9E6C 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    color: #FFFFFF;
    box-shadow: 
        0 20px 60px rgba(192, 130, 67, 0.4),
        0 10px 30px rgba(0, 0, 0, 0.3),
        inset 0 2px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 3;
    /* animation: iconPulse 2s ease-in-out infinite; */
}

.success-ripple {
    display: none;
}

.ripple-1 {
    display: none;
}

.ripple-2 {
    display: none;
}

.ripple-3 {
    display: none;
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes ripple {
    0% {
        width: 120px;
        height: 120px;
        opacity: 1;
    }
    100% {
        width: 200px;
        height: 200px;
        opacity: 0;
    }
}

/* Success Message */
.success-message {
    margin-bottom: 50px;
}

.success-title {
    font-size: 42px;
    font-weight: 800;
    color: #FFFFFF;
    margin: 0 0 20px 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: linear-gradient(135deg, #FFFFFF 0%, #C08243 50%, #DD9E6C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    /* animation: titleGlow 3s ease-in-out infinite; */
}

@keyframes titleGlow {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.2); }
}

.success-description {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0 0 30px 0;
    font-weight: 400;
}

.success-thanks {
    font-size: 24px;
    color: #C08243;
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    /* animation: thanksPulse 2s ease-in-out infinite; */
}

@keyframes thanksPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Contact Information */
.contact-info {
    margin-bottom: 50px;
}

.contact-title {
    font-size: 28px;
    color: #FFFFFF;
    margin: 0 0 30px 0;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-cards {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    min-width: 250px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.contact-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #C08243 0%, #DD9E6C 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #FFFFFF;
    box-shadow: 0 8px 25px rgba(192, 130, 67, 0.3);
}

.contact-details h3 {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 8px 0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-value {
    font-size: 18px;
    color: #FFFFFF;
    margin: 0;
    font-weight: 700;
}

/* Action Buttons */
.success-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.back-to-shop-btn, .home-btn {
    background: linear-gradient(135deg, #C08243 0%, #DD9E6C 100%);
    border: none;
    border-radius: 25px;
    padding: 18px 35px;
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    align-items: center;
    gap: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 8px 25px rgba(192, 130, 67, 0.3),
        0 4px 12px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.back-to-shop-btn::before, .home-btn::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.5s ease;
}

.back-to-shop-btn:hover::before, .home-btn:hover::before {
    left: 100%;
}

.back-to-shop-btn:hover, .home-btn:hover {
    background: linear-gradient(135deg, #DD9E6C 0%, #C08243 100%);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 15px 35px rgba(192, 130, 67, 0.4),
        0 8px 18px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.back-to-shop-btn:active, .home-btn:active {
    transform: translateY(-1px) scale(1.02);
}

.back-to-shop-btn i, .home-btn i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.back-to-shop-btn:hover i, .home-btn:hover i {
    transform: scale(1.1);
}

/* Decorative Elements - Disabled */
.decorative-elements {
    display: none;
}

.floating-icon {
    display: none;
}

.icon-1 {
    display: none;
}

.icon-2 {
    display: none;
}

.icon-3 {
    display: none;
}

/* Mobile Responsive - Full Page */
@media (max-width: 768px) {
    .order-success-container {
        padding: 20px;
    }
    
    .success-content {
        margin: 0;
        padding: 30px;
        border-radius: 25px;
        width: 100%;
        max-width: 500px;
    }
    
    .success-title {
        font-size: 32px;
    }
    
    .success-description {
        font-size: 18px;
    }
    
    .success-thanks {
        font-size: 20px;
    }
    
    .contact-cards {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-card {
        min-width: auto;
        width: 100%;
        max-width: 300px;
    }
    
    .success-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .back-to-shop-btn, .home-btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .order-success-container {
        padding: 15px;
    }
    
    .success-content {
        margin: 0;
        padding: 25px;
        width: 100%;
        max-width: 400px;
    }
    
    .success-icon {
        width: 100px;
        height: 100px;
        font-size: 40px;
    }
    
    .success-title {
        font-size: 28px;
    }
    
    .success-description {
        font-size: 16px;
    }
    
    .success-thanks {
        font-size: 18px;
    }
    
    .contact-card {
        padding: 20px;
        gap: 15px;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .back-to-shop-btn, .home-btn {
        padding: 15px 25px;
        font-size: 14px;
    }
}

/* Product Card Animations */
@keyframes productFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Staggered animation delay for cards */
/*.product-card:nth-child(1) { animation-delay: 0.1s; }
.product-card:nth-child(2) { animation-delay: 0.2s; }
.product-card:nth-child(3) { animation-delay: 0.3s; }
.product-card:nth-child(4) { animation-delay: 0.4s; }
.product-card:nth-child(5) { animation-delay: 0.5s; }
.product-card:nth-child(6) { animation-delay: 0.6s; }
.product-card:nth-child(7) { animation-delay: 0.7s; }
.product-card:nth-child(8) { animation-delay: 0.8s; }*/

/* Filter Animation */
.product-card.filtered-out {
    opacity: 0;
    transform: scale(0.8) translateY(20px);
    pointer-events: none;
    transition: all 0.4s ease;
}

.product-card.filtered-in {
    opacity: 1;
    transform: scale(1) translateY(0);
    pointer-events: auto;
    transition: all 0.4s ease;
}

/* Category Filter Button Animation */
.category-btn .btn-text {
    position: relative;
    z-index: 2;
}

/* Hover effect ripple */
@keyframes ripple {
    0% {
        transform: scale(0);
        opacity: 1;
    }
    100% {
        transform: scale(4);
        opacity: 0;
    }
}

/* Responsive Design for Shop */
@media (max-width: 1200px) {
    .product-card {
        flex: 0 0 280px;
    }
    
    .products-carousel {
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .cart-icon-container {
        right: 100px;
    }
    
    .cart-icon-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .shop-section {
        padding: 15px;
    }
    
    .category-filter {
        gap: 10px;
        padding: 15px;
        margin-bottom: 30px;
    }
    
    .category-btn {
        padding: 10px 18px;
        font-size: 12px;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .product-image {
        height: 200px;
    }
    
    .product-info {
        padding: 20px;
    }
    
    .product-name {
        font-size: 16px;
    }
    
    .price {
        font-size: 20px;
    }
    
    .add-to-cart-btn {
        padding: 12px;
        font-size: 14px;
    }
    
    .shop-page .top-navigation {
        top: 15px;
        left: 15px;
    }
    
    .category-section {
        margin-bottom: 40px;
    }
    
    .category-title {
        margin-bottom: 25px;
    }
    
    .category-text {
        font-size: 18px;
        letter-spacing: 2px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .product-card {
        flex: 0 0 250px;
    }
}

@media (max-width: 480px) {
    .cart-icon-container {
        right: 80px;
        top: 15px;
    }
    
    .cart-icon-btn {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .cart-counter {
        width: 18px;
        height: 18px;
        font-size: 10px;
        top: -6px;
        right: -6px;
    }
    .category-filter {
        flex-direction: column;
        align-items: center;
    }
    
    .category-btn {
        width: 100%;
        max-width: 200px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .product-image {
        height: 180px;
    }
    
    .product-info {
        padding: 15px;
    }
    
    .product-name {
        font-size: 14px;
        margin-bottom: 10px;
    }
    
    .product-rating {
        margin-bottom: 10px;
    }
    
    .stars {
        font-size: 14px;
    }
    
    .rating-text {
        font-size: 12px;
    }
    
    .price {
        font-size: 18px;
    }
    
    .product-price {
        margin-bottom: 15px;
    }
    
    .add-to-cart-btn {
        padding: 10px;
        font-size: 12px;
    }
}

/* Product Modal Styles */
.product-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-modal {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    transform: scale(0.9) translateY(20px);
    transition: all 0.3s ease;
    font-family: 'Montserrat', Arial, sans-serif;
}

.product-modal-overlay[style*="opacity: 1"] .product-modal {
    transform: scale(1) translateY(0);
}

.product-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 30px 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.product-modal-header h2 {
    margin: 0;
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.product-modal-close {
    position: absolute;
    top: -20px;
    right: -20px;
    background: linear-gradient(135deg, #C08243 0%, #DD9E6C 100%);
    border: 3px solid rgba(255, 255, 255, 0.9);
    color: #FFFFFF;
    font-size: 24px;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4), 0 4px 8px rgba(192, 130, 67, 0.6);
    z-index: 1000;
    font-weight: bold;
    line-height: 1;
}

.product-modal-close:hover {
    background: linear-gradient(135deg, #DD9E6C 0%, #C08243 100%);
    transform: scale(1.15) rotate(90deg);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5), 0 6px 12px rgba(192, 130, 67, 0.8);
    border-color: #FFFFFF;
}

.product-modal-body {
    display: flex;
    gap: 30px;
    padding: 30px;
}

.product-modal-image {
    flex: 1;
    max-width: 400px;
}

.product-modal-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    object-fit: cover;
}

.product-modal-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.product-modal-info h3 {
    margin: 0;
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: linear-gradient(135deg, #FFFFFF 0%, #C08243 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.product-modal-rating {
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-modal-rating .stars {
    color: #C08243;
    font-size: 20px;
    letter-spacing: 2px;
}

.product-modal-rating span:last-child {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    font-weight: 500;
}

.product-modal-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 400;
}

.product-modal-price {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 700;
    font-size: 32px;
    color: #C08243;
    background: linear-gradient(135deg, #C08243 0%, #C08243 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.product-modal-cart-btn {
    background: linear-gradient(135deg, #C08243 0%, #DD9E6C 100%);
    border: none;
    border-radius: 15px;
    padding: 18px 30px;
    color: white;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 700;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    margin-top: 10px;
}

.product-modal-cart-btn::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.5s;
}

.product-modal-cart-btn:hover::before {
    left: 100%;
}

.product-modal-cart-btn:hover {
    background: linear-gradient(135deg, #DD9E6C 0%, #C08243 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(192, 130, 67, 0.4);
}

.product-modal-cart-btn:active {
    transform: translateY(0);
    box-shadow: 0 5px 20px rgba(192, 130, 67, 0.3);
}

/* Product Modal Responsive */
@media (max-width: 768px) {
    .product-modal {
        width: 95%;
        margin: 20px;
    }
    
    .product-modal-body {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }
    
    .product-modal-image {
        max-width: none;
    }
    
    .product-modal-info h3 {
        font-size: 24px;
    }
    
    .product-modal-price {
        font-size: 28px;
    }
    
    .product-modal-cart-btn {
        padding: 16px 25px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .product-modal-header {
        padding: 20px 20px 15px;
    }
    
    .product-modal-header h2 {
        font-size: 20px;
    }
    
    .product-modal-body {
        padding: 15px;
        gap: 15px;
    }
    
    .product-modal-info h3 {
        font-size: 20px;
    }
    
    .product-modal-rating .stars {
        font-size: 18px;
    }
    
    .product-modal-rating span:last-child {
        font-size: 14px;
    }
    
    .product-modal-description {
        font-size: 14px;
    }
    
    .product-modal-price {
        font-size: 24px;
    }
    
    .product-modal-cart-btn {
        padding: 14px 20px;
        font-size: 14px;
    }
}

/* =====================================================
   SHOP PAGE V2 - NEW MINIMALIST DESIGN
   ===================================================== */

/* Product Card V3 (Mockup style) */
.product-card-v3-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    flex: 0 0 280px;
}

.product-card-v3 {
    width: 100%;
    background-color: #333;
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 350px;
}

.product-photo-v3 {
    flex: 2;
    background-color: #888;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: black;
    font-size: 24px;
    font-weight: bold;
    text-transform: uppercase;
}

.cart-btn-v3 {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    border-radius: 8px;
    width: 40px;
    height: 40px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cart-btn-v3:hover {
    background-color: rgba(0, 0, 0, 0.7);
}

.product-info-v3 {
    flex: 1;
    background-color: #555;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    font-weight: bold;
    text-transform: uppercase;
}

.product-price-v3 {
    color: white;
    font-size: 22px;
    font-weight: bold;
}


/* Shop Page V2 Base */
.shop-page-v2 {
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

.shop-page-v2::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, 
        rgba(13, 13, 13, 0.95) 0%, 
        rgba(26, 26, 26, 0.9) 50%,
        rgba(13, 13, 13, 0.95) 100%);
    z-index: -1;
}

/* Shop Header */
.shop-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 1000;
    animation: headerSlideDown 0.8s ease;
    transition: transform 0.3s ease-in-out;
}

.shop-header.hidden {
    transform: translateY(-100%);
}

@keyframes headerSlideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Burger Menu V2 */
.burger-menu-btn-v2 {
    width: 35px;
    height: 35px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1001;
}

.burger-menu-btn-v2 .burger-line {
    width: 25px;
    height: 2px;
    background: #fff;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.burger-menu-btn-v2:hover .burger-line {
    background: #C08243;
}

.burger-menu-btn-v2:hover .burger-line:nth-child(1) {
    transform: translateY(-2px);
}

.burger-menu-btn-v2:hover .burger-line:nth-child(3) {
    transform: translateY(2px);
}

/* Logo Container V2 */
.logo-container-v2 {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    animation: logoFadeIn 1.2s ease;
}

.logo-v2 {
    height: 50px;
    width: auto;
    filter: brightness(1.1);
    transition: all 0.3s ease;
}

.logo-v2:hover {
    transform: scale(1.05);
    filter: brightness(1.3);
}

@keyframes logoFadeIn {
    from {
        opacity: 0;
        transform: translateX(-50%) scale(0.8);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) scale(1);
    }
}

/* Language Selector V2 */
.language-selector-v2 {
    position: relative;
    z-index: 1001;
}

.lang-toggle-btn-v2 {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 8px 16px;
    color: #fff;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lang-toggle-btn-v2:hover {
    background: rgba(192, 130, 67, 0.2);
    border-color: #C08243;
    transform: translateY(-2px);
}

.current-lang-v2 {
    display: inline-block;
}

.lang-menu-v2 {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 8px;
    display: none;
    min-width: 80px;
    animation: menuSlideDown 0.3s ease;
}

.lang-menu-v2.show {
    display: block;
}

@keyframes menuSlideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.lang-menu-item-v2 {
    display: block;
    width: 100%;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 600;
    font-size: 13px;
    padding: 8px 12px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
}

.lang-menu-item-v2:hover {
    background: rgba(192, 130, 67, 0.2);
    color: #fff;
}

.lang-menu-item-v2.active {
    background: rgba(192, 130, 67, 0.3);
    color: #C08243;
}

/* Main Title */
.shop-main-title {
    padding-top: 120px;
    text-align: center;
    margin-bottom: 60px;
    animation: titleFadeInUp 1s ease;
}

@keyframes titleFadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.main-title-text {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 700;
    font-size: 48px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 8px;
    margin: 0 0 20px 0;
    position: relative;
    display: inline-block;
}

.title-underline {
    width: 200px;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        #C08243 20%, 
        #C08243 80%, 
        transparent 100%);
    margin: 0 auto;
    animation: underlineExpand 1.5s ease;
}

@keyframes underlineExpand {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: 200px;
        opacity: 1;
    }
}

/* Shop Content V2 */
.shop-content-v2 {
    padding: 0 40px 80px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Category Section V2 */
.category-section-v2 {
    margin-bottom: 80px;
    opacity: 0;
    animation: sectionFadeIn 0.8s ease forwards;
}

.category-section-v2:nth-child(1) { animation-delay: 0.2s; }
.category-section-v2:nth-child(2) { animation-delay: 0.4s; }
.category-section-v2:nth-child(3) { animation-delay: 0.6s; }

@keyframes sectionFadeIn {
    to {
        opacity: 1;
    }
}

/* Category Header V2 */
.category-header-v2 {
    background: #1C1C1C;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 15px 20px;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.category-header-v2::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: none;
    animation: none;
}

.category-title-v2 {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 700;
    font-size: 32px;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin: 0;
    line-height: 1.2;
}

/* Products Slider V2 */
.products-slider-v2 {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Slider Arrows */
.slider-arrow {
    flex-shrink: 0;
    width: 45px;
    height: 45px;
    background: #1C1C1C;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.slider-arrow:hover {
    background: #333;
    border-color: rgba(255, 255, 255, 0.2);
    color: #fff;
    transform: scale(1.1);
}

.slider-arrow:active {
    transform: scale(0.95);
}

/* Products Container V2 */
.products-container-v2 {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    overflow-y: visible;
    scroll-behavior: smooth;
    padding: 10px 0 30px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.products-container-v2::-webkit-scrollbar {
    display: none;
}

/* Product Card V2 */
.product-card-v2 {
    flex: 0 0 280px;
    background: #1C1C1C;
    backdrop-filter: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    opacity: 0;
    transform: translateY(20px);
}

.product-card-v2.visible {
    opacity: 1;
    transform: translateY(0);
}

.product-card-v2:hover {
    transform: translateY(0);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: none;
}

/* Product Image V2 */
.product-image-v2 {
    position: relative;
    height: 200px;
    background: #2a2a2a;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-img-v2 {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
    transition: all 0.5s ease;
}

.product-card-v2:hover .product-img-v2 {
    transform: scale(1.05);
}

.image-overlay-v2 {
    display: none;
}

/* Product Badge V2 */
.product-badge-v2 {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #C89C6D;
    color: white;
    padding: 5px 12px;
    border-radius: 4px;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 700;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 5;
}

.product-badge-v2.sale {
    background: #D44F4F;
}

.product-badge-v2.hot {
    background: linear-gradient(135deg, #C08243 0%, #C08243 100%);
}

/* Product Info V2 */
.product-info-v2 {
    padding: 20px;
}

.product-title-v2 {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 15px 0;
    line-height: 1.3;
    min-height: 36px;
}

/* Product Description Lines */
.product-description-v2 {
    margin-bottom: 20px;
}

.product-desc-text {
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 12px;
    line-height: 1.4;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.desc-line {
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    margin-bottom: 5px;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.desc-line:nth-child(1) { width: 100%; }
.desc-line:nth-child(2) { width: 85%; }
.desc-line:nth-child(3) { width: 70%; }

.product-card-v2:hover .desc-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(192, 130, 67, 0.5), 
        transparent);
    animation: lineShimmer 1.5s infinite;
}

@keyframes lineShimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Product Footer V2 */
.product-footer-v2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Product Price V2 */
.product-price-v2 {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.price-label {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 600;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-value {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #C89C6D;
}

/* New Add to Cart Button with Plus Icon */
.add-to-cart-btn-plus {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #C08243 0%, #DD9E6C 100%);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #FFFFFF;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(192, 130, 67, 0.3);
}

.add-to-cart-btn-plus::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.add-to-cart-btn-plus:hover::before {
    transform: translateX(100%);
}

.add-to-cart-btn-plus:hover {
    background: linear-gradient(135deg, #DD9E6C 0%, #C08243 100%);
    border-color: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(192, 130, 67, 0.5);
}

.add-to-cart-btn-plus:active {
    transform: scale(0.95);
    box-shadow: 0 2px 10px rgba(192, 130, 67, 0.4);
}

.add-to-cart-btn-plus i {
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.add-to-cart-btn-plus:hover i {
    transform: rotate(90deg);
}

/* Product Action Button */
.product-action-btn {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.product-action-btn:hover {
    background: rgba(192, 130, 67, 0.2);
    border-color: #C08243;
    color: #C08243;
    transform: scale(1.1);
}

.product-action-btn:active {
    transform: scale(0.95);
}

.product-action-btn.clicked {
    animation: buttonPulse 0.6s ease;
}

@keyframes buttonPulse {
    0% { transform: scale(1); }
    50% { transform: scale(0.9); }
    100% { transform: scale(1); }
}

.product-action-btn i {
    transition: all 0.3s ease;
}

.product-action-btn:hover i {
    transform: translateY(3px);
}

/* Flying Cart Animation */
.fly-to-cart {
    position: fixed;
    width: 30px;
    height: 30px;
    background: #C08243;
    border-radius: 50%;
    z-index: 9999;
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

/* Cart Notification V2 */
.cart-notification-v2 {
    position: fixed;
    top: 100px;
    right: -300px;
    background: linear-gradient(135deg, #C08243 0%, #DD9E6C 100%);
    color: #363636;
    padding: 15px 25px;
    border-radius: 8px;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.5px;
    box-shadow: 0 10px 30px rgba(192, 130, 67, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10000;
}

.cart-notification-v2.show {
    right: 40px;
}

/* Responsive Design for Shop V2 */
@media (max-width: 1200px) {
    .shop-content-v2 {
        padding: 0 30px 60px;
    }
    
    .product-card-v2 {
        flex: 0 0 250px;
    }
}

@media (max-width: 768px) {
    .shop-header {
        padding: 0 20px;
        height: 70px;
    }
    
    .logo-v2 {
        height: 40px;
    }
    
    .shop-main-title {
        padding-top: 100px;
        margin-bottom: 40px;
    }
    
    .main-title-text {
        font-size: 32px;
        letter-spacing: 4px;
    }
    
    .shop-content-v2 {
        padding: 0 20px 60px;
    }
    
    .category-section-v2 {
        margin-bottom: 60px;
    }
    
    .category-title-v2 {
        font-size: 16px;
        letter-spacing: 3px;
    }
    
    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .product-card-v2 {
        flex: 0 0 220px;
    }
    
    .product-image-v2 {
        height: 180px;
    }
}

@media (max-width: 480px) {
    .shop-header {
        padding: 0 15px;
        height: 60px;
    }
    
    .burger-menu-btn-v2 {
        width: 30px;
        height: 30px;
    }
    
    .burger-menu-btn-v2 .burger-line {
        width: 20px;
    }
    
    .logo-v2 {
        height: 35px;
    }
    
    .lang-toggle-btn-v2 {
        padding: 6px 12px;
        font-size: 12px;
    }
    
    .shop-main-title {
        padding-top: 80px;
        margin-bottom: 30px;
    }
    
    .main-title-text {
        font-size: 24px;
        letter-spacing: 3px;
    }
    
    .title-underline {
        width: 150px;
    }
    
    .shop-content-v2 {
        padding: 0 15px 50px;
    }
    
    .category-section-v2 {
        margin-bottom: 50px;
    }
    
    .category-header-v2 {
        padding: 15px;
        margin-bottom: 20px;
    }
    
    .category-title-v2 {
        font-size: 14px;
        letter-spacing: 2px;
    }
    
    .products-slider-v2 {
        gap: 10px;
    }
    
    .slider-arrow {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .product-card-v2 {
        flex: 0 0 200px;
    }
    
    .product-image-v2 {
        height: 150px;
    }
    
    .product-info-v2 {
        padding: 15px;
    }
    
    .product-title-v2 {
        font-size: 12px;
    }
    
    .price-value {
        font-size: 16px;
    }

    .add-to-cart-btn-plus {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .product-action-btn {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }

    .cart-notification-v2 {
        font-size: 12px;
        padding: 12px 20px;
    }
}

/* =====================================================
   REVIEWS SECTION STYLES
   ===================================================== */

.reviews-section,
.write-review-section {
    margin-top: 80px;
}

/* Reviews Slider Container */
.reviews-slider-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}

.reviews-container {
    flex: 1;
    display: flex;
    gap: 25px;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    max-width: 950px;
    margin: 0 auto;
}

.review-card {
    background: #1C1C1C;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    height: 300px;
    width: 450px;
    min-width: 450px;
    max-width: 450px;
    flex-shrink: 0;
    box-sizing: border-box;
}

.review-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Мобильные стили для отзывов */
@media (max-width: 768px) {
    .reviews-container {
        flex-direction: column !important;
        gap: 15px !important;
        padding: 10px 0 !important;
    }
    
    .review-card {
        width: 100% !important;
        min-width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        min-height: 200px !important;
        padding: 20px !important;
    }
    
    .review-header {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 10px !important;
    }
    
    .review-user-info {
        display: flex !important;
        align-items: center !important;
        gap: 15px !important;
        width: 100% !important;
    }
    
    .review-rating {
        margin-right: 0 !important;
        margin-left: 0 !important;
        margin-top: 0 !important;
    }
    
    .review-comment {
        margin-top: 10px !important;
    }
    
    .review-text {
        font-size: 14px !important;
        line-height: 1.5 !important;
    }
    
    .review-user-name {
        font-size: 16px !important;
    }
    
    .review-date {
        font-size: 12px !important;
        white-space: nowrap !important;
    }
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.review-author {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #fff;
}

.review-rating {
    color: #C89C6D;
}

.review-comment {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.review-text {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
    flex: 1;
    overflow: hidden;
}

.review-full-text {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
    flex: 1;
    overflow-y: auto;
    max-height: 150px;
    padding-right: 5px;
}

/* Кастомный скроллбар для отзывов */
.review-full-text::-webkit-scrollbar {
    width: 6px;
}

.review-full-text::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.review-full-text::-webkit-scrollbar-thumb {
    background: #C08243;
    border-radius: 3px;
}

.review-full-text::-webkit-scrollbar-thumb:hover {
    background: #DD9E6C;
}

.review-date {
    margin-top: 15px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    text-align: right;
}

.read-more-btn {
    background: none;
    border: none;
    color: #C08243;
    cursor: pointer;
    font-size: 12px;
    text-decoration: underline;
    margin-top: auto;
    padding: 5px 0;
    transition: color 0.3s ease;
    align-self: flex-start;
}

.read-more-btn:hover {
    color: #DD9E6C;
}

/* Write Review Form */
.review-form {
    background: #1C1C1C;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.review-form .form-group {
    width: 100%;
}

.review-form input[type="text"],
.review-form textarea {
    width: 100%;
    box-sizing: border-box;
    background: #2a2a2a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 15px;
    color: #fff;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 14px;
    transition: all 0.3s ease;
}

/* Specific override for reviewer name field */
#review-name {
    position: static !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;
    background: #1a1a1a !important;
    cursor: default !important;
    pointer-events: none !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: rgba(255, 255, 255, 0.7) !important;
}

.review-form label {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin-bottom: 8px;
    display: block;
}

.review-form input[type="text"]:focus,
.review-form textarea:focus {
    outline: none;
    border-color: #C89C6D;
    background: #333;
}

.review-form textarea {
    resize: vertical;
}

/* Rating Group - Inline Version */
.rating-group label {
    font-family: 'Montserrat', Arial, sans-serif !important;
    font-weight: 700 !important;
    color: rgba(255, 255, 255, 0.7) !important;
    display: inline-block !important;
    margin: 0 !important;
    font-size: 16px !important;
    user-select: text !important;
}

.star {
    font-size: 28px !important;
    color: #666;
    cursor: pointer !important;
    transition: all 0.2s ease;
    user-select: none !important;
    line-height: 1 !important;
    display: inline !important;
    margin-left: 6px !important;
    padding: 2px !important;
    pointer-events: all !important;
}

.star:first-of-type {
    margin-left: 15px !important;
}

.star:hover {
    color: #C89C6D !important;
    transform: scale(1.1) !important;
}

.star.active {
    color: #C89C6D !important;
}

.star.active:hover {
    color: #fff !important;
}

.submit-review-btn {
    align-self: flex-start;
    background: #2a2a2a;
    color: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 15px 30px;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: not-allowed;
    transition: all 0.3s ease;
    opacity: 0.5;
}

.submit-review-btn:not(:disabled) {
    background: linear-gradient(135deg, #C08243 0%, #DD9E6C 100%);
    color: #1C1C1C;
    border-color: #C08243;
    cursor: pointer;
    opacity: 1;
    box-shadow: 0 4px 15px rgba(192, 130, 67, 0.4);
}

.submit-review-btn:not(:disabled):hover {
    background: linear-gradient(135deg, #DD9E6C 0%, #C08243 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(192, 130, 67, 0.6);
}

.submit-review-btn:disabled {
    background: #2a2a2a;
    color: rgba(255, 255, 255, 0.5);
    border-color: rgba(255, 255, 255, 0.1);
    cursor: not-allowed;
    opacity: 0.5;
    box-shadow: none;
}

/* Reviews Slider Buttons */
.reviews-slider-btn {
    background: #1C1C1C;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C89C6D;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.reviews-slider-btn:hover {
    background: #C89C6D;
    color: #1C1C1C;
    border-color: #C89C6D;
    transform: scale(1.1);
}

.reviews-slider-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: none;
}

.reviews-slider-btn:disabled:hover {
    background: #1C1C1C;
    color: #C89C6D;
    border-color: rgba(255, 255, 255, 0.1);
    transform: none;
}

/* Reviews Placeholder */
.reviews-placeholder {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 40px;
    background: #1C1C1C;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    min-height: 300px;
}

.placeholder-icon {
    font-size: 48px;
    color: #C89C6D;
    margin-bottom: 20px;
    opacity: 0.7;
}

.placeholder-title {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: #fff;
    margin: 0 0 15px 0;
}

.placeholder-text {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin: 0;
    max-width: 400px;
}

/* Empty Shop Placeholder */
.empty-shop-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 40px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    min-height: 350px;
    margin: 40px auto;
    max-width: 600px;
}

/* Responsive adjustments for reviews slider */
@media (max-width: 768px) {
    .reviews-slider-container {
        flex-direction: column;
        gap: 15px;
    }
    
    .reviews-slider-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .reviews-placeholder {
        padding: 40px 20px;
        min-height: 250px;
    }
    
    .placeholder-icon {
        font-size: 36px;
        margin-bottom: 15px;
    }
    
    .placeholder-title {
        font-size: 20px;
        margin-bottom: 10px;
    }
    
    .placeholder-text {
        font-size: 14px;
    }
}


/* =====================================================
   ABOUT US PAGE STYLES
   ===================================================== */

.about-us-content {
    padding-top: 120px; /* Pushes content below the fixed header */
    animation: fadeIn 1s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.about-us-banner {
    margin-bottom: 60px;
    text-align: center;
}

.banner-image {
    width: 100%;
    max-width: 1200px;
    height: auto;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.banner-text p {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 400;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

.branch-header {
    margin-bottom: 40px;
}

.branch-section {
    display: flex;
    gap: 40px;
    align-items: center;
    margin-bottom: 80px;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.branch-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.branch-section.reversed {
    flex-direction: row-reverse;
}

.branch-image {
    flex: 1;
}

.branch-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.branch-image img:hover {
    transform: scale(1.03);
}

.branch-info {
    flex: 1;
    color: #fff;
}

.branch-info h3 {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: #C89C6D;
    margin: 0 0 20px 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.branch-info p {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin: 0 0 15px 0;
}

/* Responsive for About Us page */
@media (max-width: 768px) {
    .branch-section,
    .branch-section.reversed {
        flex-direction: column;
        gap: 30px;
        margin-bottom: 60px;
    }
    .branch-info {
        text-align: center;
    }
}

/* Timeline Section */
.timeline-section {
    margin-bottom: 80px;
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.1);
}

.timeline-item {
    padding: 20px 40px;
    position: relative;
    width: 50%;
    box-sizing: border-box;
}

.timeline-item:nth-child(odd) {
    left: 0;
    padding-right: 50px;
    text-align: right;
}

.timeline-item:nth-child(even) {
    left: 50%;
    padding-left: 50px;
    text-align: left;
}

.timeline-item::after {
    content: '';
    position: absolute;
    top: 25px;
    width: 16px;
    height: 16px;
    background-color: #1C1C1C;
    border: 3px solid #C89C6D;
    border-radius: 50%;
    z-index: 1;
    transition: transform 0.3s ease;
}

.timeline-item:nth-child(odd)::after {
    right: -8px;
}

.timeline-item:nth-child(even)::after {
    left: -8px;
}

.timeline-item:hover::after {
    transform: scale(1.2);
}

.timeline-content {
    background: #1C1C1C;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 20px;
    transition: transform 0.3s ease;
}

.timeline-item:hover .timeline-content {
    transform: translateY(-5px);
}

.timeline-content h3 {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #C89C6D;
    margin: 0 0 10px 0;
}

.timeline-content p {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
}

/* Responsive for Timeline */
@media (max-width: 768px) {
    .timeline::before {
        left: 8px;
    }
    .timeline-item,
    .timeline-item:nth-child(even) {
        width: 100%;
        left: 0;
        padding-left: 50px;
        padding-right: 20px;
        text-align: left;
    }
    .timeline-item:nth-child(odd) {
        padding-right: 20px;
        text-align: left;
    }
    .timeline-item::after,
    .timeline-item:nth-child(even)::after {
        left: 0;
    }
}

/* --- Cropping Frame for Branch Photos --- */
.branch-image {
    flex: 1; /* Make sure it takes up space in the flex container */
    max-width: 500px; /* Or whatever max-width you prefer */
    aspect-ratio: 4 / 3; /* Aspect ratio for the frame, e.g., 4:3 */
    border-radius: 12px;
    overflow: hidden; /* This is what crops the image */
    position: relative;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.branch-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* This makes the image fill the frame, cropping the excess */
    object-position: center;
    transition: transform 0.4s ease;
}

.branch-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.branch-image:hover img {
    transform: scale(1.05); /* Slight zoom on hover */
}

/* --- Animated border for the frame --- */
.branch-image::before,
.branch-image::after {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    box-sizing: border-box;
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.4s ease;
    pointer-events: none;
}

/* Top and left borders */
.branch-image::before {
    border-top: 3px solid #C89C6D;
    border-left: 3px solid #C89C6D;
    transform: scale(0, 1);
    transform-origin: left top;
}

/* Bottom and right borders */
.branch-image::after {
    border-bottom: 3px solid #C89C6D;
    border-right: 3px solid #C89C6D;
    transform: scale(1, 0);
    transform-origin: bottom right;
}

.branch-image:hover::before {
    opacity: 1;
    transform: scale(1);
    transition-delay: 0.1s;
}

.branch-image:hover::after {
    opacity: 1;
    transform: scale(1);
}
/* --- End Cropping Frame --- */

/* =====================================================
   NEWS PAGE STYLES
   ===================================================== */

/* News Grid */
.news-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    padding: 20px 0;
    animation: newsGridFadeIn 0.8s ease;
    max-width: 900px;
    margin: 0 auto;
}

@media (max-width: 767px) {
    .news-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
}

@keyframes newsGridFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* News Card */
.news-card {
    background: rgba(28, 28, 28, 0.9);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    animation: newsCardSlideUp 0.6s ease forwards;
    opacity: 0;
    transform: translateY(50px);
}

.news-card:nth-child(1) { animation-delay: 0.1s; }
.news-card:nth-child(2) { animation-delay: 0.2s; }
.news-card:nth-child(3) { animation-delay: 0.3s; }
.news-card:nth-child(4) { animation-delay: 0.4s; }
.news-card:nth-child(5) { animation-delay: 0.5s; }
.news-card:nth-child(6) { animation-delay: 0.6s; }

@keyframes newsCardSlideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.news-card:hover {
    transform: translateY(-10px);
    border-color: rgba(192, 130, 67, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.news-card:hover .news-img {
    transform: scale(1.1);
}

/* News Image */
.news-image {
    position: relative;
    height: 250px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(192, 130, 67, 0.1), rgba(165, 111, 53, 0.1));
}

.news-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0.9);
}

.news-card:hover .news-img {
    filter: brightness(1.1);
}

/* News Overlay */
.news-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        45deg, 
        rgba(0, 0, 0, 0.3) 0%, 
        transparent 50%, 
        rgba(192, 130, 67, 0.2) 100%
    );
    transition: all 0.3s ease;
}

.news-card:hover .news-overlay {
    background: linear-gradient(
        45deg, 
        rgba(0, 0, 0, 0.5) 0%, 
        transparent 50%, 
        rgba(192, 130, 67, 0.4) 100%
    );
}

/* News Date Badge */
.news-date {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #C08243 0%, #DD9E6C 100%);
    color: #363636;
    padding: 10px 15px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(192, 130, 67, 0.4);
    transform: scale(0.9);
    transition: all 0.3s ease;
}

.news-card:hover .news-date {
    transform: scale(1);
    box-shadow: 0 12px 30px rgba(192, 130, 67, 0.6);
}

.date-day {
    display: block;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 1;
}

.date-month {
    display: block;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 2px;
    opacity: 0.9;
}

/* News Content */
.news-content {
    padding: 25px;
    position: relative;
}

.news-title {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 15px 0;
    line-height: 1.3;
    transition: all 0.3s ease;
}

.news-card:hover .news-title {
    color: #C08243;
}

.news-excerpt {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0 0 20px 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* News Footer */
.news-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.news-category {
    background: rgba(192, 130, 67, 0.2);
    color: #C08243;
    padding: 6px 12px;
    border-radius: 20px;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 600;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(192, 130, 67, 0.3);
}

.news-link-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 8px 15px;
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 6px;
    position: relative;
    overflow: hidden;
}

.news-link-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(192, 130, 67, 0.3), transparent);
    transition: left 0.5s;
}

.news-link-btn:hover::before {
    left: 100%;
}

.news-link-btn:hover {
    background: rgba(192, 130, 67, 0.2);
    border-color: #C08243;
    color: #C08243;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(192, 130, 67, 0.3);
}

.news-link-btn i {
    font-size: 10px;
    transition: all 0.3s ease;
}

.news-link-btn:hover i {
    transform: translateX(3px);
}

/* News Pagination */
.news-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 60px;
    padding: 20px 0;
    animation: paginationFadeIn 1s ease;
}

@keyframes paginationFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pagination-btn {
    width: 45px;
    height: 45px;
    background: rgba(28, 28, 28, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.pagination-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(192, 130, 67, 0.1), rgba(165, 111, 53, 0.1));
    opacity: 0;
    transition: all 0.3s ease;
}

.pagination-btn:hover::before,
.pagination-btn.active::before {
    opacity: 1;
}

.pagination-btn:hover {
    background: rgba(192, 130, 67, 0.2);
    border-color: #C08243;
    color: #C08243;
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(192, 130, 67, 0.3);
}

.pagination-btn.active {
    background: linear-gradient(135deg, #C08243 0%, #DD9E6C 100%);
    border-color: #A56F35;
    color: white;
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(192, 130, 67, 0.4);
}

.pagination-prev,
.pagination-next {
    background: linear-gradient(135deg, rgba(192, 130, 67, 0.1), rgba(165, 111, 53, 0.1));
    border-color: rgba(192, 130, 67, 0.3);
}

.pagination-prev:hover,
.pagination-next:hover {
    background: linear-gradient(135deg, #C08243 0%, #DD9E6C 100%);
    color: #363636;
}

/* News Modal */
.news-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(15px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.news-modal-overlay.show {
    display: flex;
    opacity: 1;
}

.news-modal {
    background-color: #000000;
    border-radius: 20px;
    width: 90%;
    max-width: 400px;
    transform: translateY(-50px);
    transition: transform 0.3s ease;
    position: relative;
    box-sizing: border-box;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    overflow: hidden; /* Ensure no scrollbar on the modal itself */
    max-height: 90vh; /* Limit height to prevent scrollbar */
}

.news-modal-overlay.show .news-modal {
    transform: translateY(0);
}

.news-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 40px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(135deg, rgba(192, 130, 67, 0.1), rgba(165, 111, 53, 0.05));
}

.news-modal-header h2 {
    margin: 0;
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: linear-gradient(135deg, #FFFFFF 0%, #C08243 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.news-modal-close {
    position: absolute;
    top: -20px;
    right: -20px;
    background: linear-gradient(135deg, #C08243 0%, #DD9E6C 100%);
    border: 3px solid rgba(255, 255, 255, 0.9);
    color: #FFFFFF;
    font-size: 24px;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4), 0 4px 8px rgba(192, 130, 67, 0.6);
    z-index: 1000;
    font-weight: bold;
    line-height: 1;
}

.news-modal-close:hover {
    background: linear-gradient(135deg, #DD9E6C 0%, #C08243 100%);
    transform: scale(1.15) rotate(90deg);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5), 0 6px 12px rgba(192, 130, 67, 0.8);
    border-color: #FFFFFF;
}

/* News Modal Body */
.news-modal-body {
    padding: 40px;
    display: flex;
    gap: 40px;
}

.news-modal-image {
    flex: 1;
    max-width: 400px;
}

.news-modal-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    object-fit: cover;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.news-modal-image img:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.news-modal-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* News Modal Meta */
.news-modal-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.news-modal-date {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.news-modal-date::before {
    content: '📅';
    font-size: 16px;
}

.news-modal-category {
    background: linear-gradient(135deg, #C08243 0%, #DD9E6C 100%);
    color: #363636;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(192, 130, 67, 0.3);
}

/* News Modal Text */
.news-modal-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    line-height: 1.8;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 400;
}

.news-modal-text p {
    margin: 0 0 15px 0;
}

/* News Modal Link Button */
.news-modal-link-btn {
    align-self: flex-start;
    background: linear-gradient(135deg, #C08243 0%, #DD9E6C 100%);
    border: none;
    border-radius: 12px;
    color: #363636;
    padding: 15px 25px;
    color: white;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 10px;
}

.news-modal-link-btn::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.5s;
}

.news-modal-link-btn:hover::before {
    left: 100%;
}

.news-modal-link-btn:hover {
    background: linear-gradient(135deg, #DD9E6C 0%, #C08243 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(192, 130, 67, 0.4);
}

.news-modal-link-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(192, 130, 67, 0.3);
}

.news-modal-link-btn i {
    font-size: 12px;
    transition: all 0.3s ease;
}

.news-modal-link-btn:hover i {
    transform: translateX(3px) scale(1.1);
}

/* Responsive Design for News */
@media (max-width: 1200px) {
    .news-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 25px;
    }
    
    .news-modal-body {
        padding: 30px;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .news-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 15px 0;
    }
    
    .news-card {
        margin: 0 10px;
    }
    
    .news-image {
        height: 200px;
    }
    
    .news-content {
        padding: 20px;
    }
    
    .news-title {
        font-size: 18px;
    }
    
    .news-excerpt {
        font-size: 13px;
    }
    
    .news-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .news-link-btn {
        align-self: stretch;
        justify-content: center;
    }
    
    .news-pagination {
        margin-top: 40px;
        gap: 8px;
    }
    
    /* News Modal Mobile */
    .news-modal {
        width: 95%;
        margin: 20px;
        max-height: 85vh;
    }
    
    .news-modal-header {
        padding: 25px 30px 15px;
    }
    
    .news-modal-header h2 {
        font-size: 20px;
    }
    
    .news-modal-body {
        flex-direction: column;
        gap: 25px;
        padding: 25px;
    }
    
    .news-modal-image {
        max-width: none;
    }
    
    .news-modal-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .news-modal-text {
        font-size: 14px;
    }
    
    .news-modal-link-btn {
        align-self: stretch;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .news-content {
        padding: 15px;
    }
    
    .news-title {
        font-size: 16px;
    }
    
    .news-excerpt {
        font-size: 12px;
        -webkit-line-clamp: 2;
        line-clamp: 2;
    }
    
    .news-date {
        padding: 8px 12px;
        top: 15px;
        right: 15px;
    }
    
    .date-day {
        font-size: 16px;
    }
    
    .date-month {
        font-size: 10px;
    }
    
    .news-modal-header {
        padding: 20px 20px 15px;
    }
    
    .news-modal-header h2 {
        font-size: 18px;
    }
    
    .news-modal-body {
        padding: 20px;
        gap: 20px;
    }
    
    .news-modal-close {
        width: 35px;
        height: 35px;
        font-size: 20px;
    }
}

/* =====================================================
   NEWS MODAL BUTTONS STYLES
   ===================================================== */

/* News Modal Actions Container */
.news-modal-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
}

/* News Modal Button Base */
.news-modal-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-width: 140px;
    justify-content: center;
}

/* Shimmer Effect */
.news-modal-btn::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.5s;
}

.news-modal-btn:hover::before {
    left: 100%;
}

/* Primary Button Style */
.news-modal-btn.primary {
    background: linear-gradient(135deg, #C08243 0%, #DD9E6C 100%);
    color: #363636;
    box-shadow: 0 4px 15px rgba(192, 130, 67, 0.3);
}

.news-modal-btn.primary:hover {
    background: linear-gradient(135deg, #DD9E6C 0%, #C08243 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(192, 130, 67, 0.4);
}

/* Secondary Button Style */
.news-modal-btn.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(192, 130, 67, 0.5);
    backdrop-filter: blur(10px);
}

.news-modal-btn.secondary:hover {
    background: rgba(192, 130, 67, 0.2);
    border-color: #C08243;
    color: #C08243;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(192, 130, 67, 0.2);
}

/* Icon Styles */
.news-modal-btn i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.news-modal-btn:hover i {
    transform: scale(1.1);
}

.news-modal-btn.primary i {
    color: rgba(255, 255, 255, 0.9);
}

.news-modal-btn.secondary i {
    color: #C08243;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .news-modal-actions {
        flex-direction: column;
        gap: 12px;
    }

    .news-modal-btn {
        width: 100%;
        min-width: unset;
        padding: 14px 20px;
    }
}

@media (max-width: 480px) {
    .news-modal-btn {
        padding: 12px 18px;
        font-size: 13px;
    }
}

/* =====================================================
   NEWS CARD BUTTONS STYLES
   ===================================================== */

/* News Category Tag */
.news-category-tag {
    display: inline-block;
    background: linear-gradient(135deg, rgba(192, 130, 67, 0.2), rgba(165, 111, 53, 0.1));
    color: #C08243;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid rgba(192, 130, 67, 0.3);
    margin-bottom: 12px;
    backdrop-filter: blur(5px);
}

/* News Actions Container */
.news-actions {
    display: flex;
    gap: 10px;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    flex-wrap: wrap;
}

/* News Button Base */
.news-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border: none;
    border-radius: 20px;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 600;
    font-size: 12px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-width: 100px;
    justify-content: center;
}

/* Shimmer Effect for Card Buttons */
.news-btn::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.4s;
}

.news-btn:hover::before {
    left: 100%;
}

/* Read More Button Style */
.news-btn.read-more {
    background: linear-gradient(135deg, #C08243 0%, #DD9E6C 100%);
    color: #363636;
    box-shadow: 0 3px 10px rgba(192, 130, 67, 0.3);
    flex: 1;
}

.news-btn.read-more:hover {
    background: linear-gradient(135deg, #DD9E6C 0%, #C08243 100%);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(192, 130, 67, 0.4);
}

/* External Link Button Style */
.news-btn.external-link {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
    border: 1.5px solid rgba(192, 130, 67, 0.4);
    backdrop-filter: blur(5px);
    flex: 1;
}

.news-btn.external-link:hover {
    background: rgba(192, 130, 67, 0.2);
    border-color: #C08243;
    color: #C08243;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(192, 130, 67, 0.2);
}

/* Icon Styles for Card Buttons */
.news-btn i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.news-btn:hover i {
    transform: scale(1.1);
}

.news-btn.read-more i {
    color: rgba(255, 255, 255, 0.9);
}

.news-btn.external-link i {
    color: #C08243;
}

/* Mobile Responsive for Card Buttons */
@media (max-width: 768px) {
    .news-actions {
        flex-direction: column;
        gap: 8px;
    }

    .news-btn {
        width: 100%;
        min-width: unset;
        padding: 10px 16px;
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .news-btn {
        padding: 8px 14px;
        font-size: 10px;
    }
}

/* =====================================================
   СТИЛИ ДЛЯ АВТОРИЗАЦИИ И РЕГИСТРАЦИИ С SMS
   ===================================================== */

/* Модальные окна авторизации */
.auth-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    animation: fadeIn 0.3s ease-out;
}

.auth-modal {
    background: white;
    border-radius: 12px;
    padding: 30px;
    max-width: 450px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.auth-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    cursor: pointer;
    color: #666;
    transition: color 0.3s;
}

.auth-modal-close:hover {
    color: #333;
}

.auth-modal h2 {
    margin-top: 0;
    color: #2c3e50;
    font-size: 24px;
    text-align: center;
    margin-bottom: 25px;
}

.auth-modal h3 {
    color: #34495e;
    font-size: 18px;
    margin-bottom: 15px;
}

/* Формы */
.auth-form {
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #555;
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e1e8ed;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s, box-shadow 0.3s;
    box-sizing: border-box;
}

.form-group input:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.form-group input:invalid {
    border-color: #e74c3c;
}

/* Исключаем поле отзыва из красной подсветки по умолчанию */
.review-form .form-group input:invalid {
    border-color: rgba(255, 255, 255, 0.1);
}

.review-form .form-group input:invalid:focus {
    border-color: #C89C6D;
}

/* Кнопки */
.auth-submit-btn,
.auth-resend-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-bottom: 10px;
}

.auth-submit-btn:hover,
.auth-resend-btn:hover {
    background: linear-gradient(135deg, #2980b9, #21618c);
    transform: translateY(-1px);
}

.auth-submit-btn:disabled,
.auth-resend-btn:disabled {
    background: #bdc3c7;
    cursor: not-allowed;
    transform: none;
}

/* Переключатели между формами */
.auth-switch {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: #666;
}

.auth-switch a {
    color: #3498db;
    text-decoration: none;
    font-weight: 500;
}

.auth-switch a:hover {
    text-decoration: underline;
}

/* SMS подтверждение */
.sms-verification {
    text-align: center;
}

.verification-info {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    border-left: 4px solid #3498db;
}

.verification-info strong {
    color: #2c3e50;
    font-size: 16px;
}

/* Таймер */
.countdown-timer {
    margin-top: 15px;
    padding: 10px;
    background: #ecf0f1;
    border-radius: 6px;
    font-size: 14px;
    color: #7f8c8d;
}

#timer {
    font-weight: bold;
    color: #e74c3c;
}

/* Уведомления */
.auth-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    max-width: 400px;
    z-index: 10001;
    animation: slideIn 0.3s ease-out;
}

.auth-notification.auth-success {
    border-left: 4px solid #27ae60;
}

.auth-notification.auth-error {
    border-left: 4px solid #e74c3c;
}

.auth-notification.auth-info {
    border-left: 4px solid #3498db;
}

.notification-content {
    background: white;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 12px;
}

.notification-icon {
    font-size: 20px;
    flex-shrink: 0;
}

.notification-message {
    flex: 1;
    font-size: 14px;
    color: #2c3e50;
}

.notification-close {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #7f8c8d;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s;
}

.notification-close:hover {
    background: #ecf0f1;
    color: #34495e;
}

/* Анимации */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Мобильная адаптация */
@media (max-width: 768px) {
    .auth-modal {
        margin: 20px;
        padding: 20px;
        max-width: none;
        width: calc(100% - 40px);
    }

    .auth-modal h2 {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .form-group input {
        font-size: 16px; /* Предотвращает зум на iOS */
    }

    .auth-notification {
        left: 10px;
        right: 10px;
        max-width: none;
    }
}

@media (max-width: 480px) {
    .auth-modal {
        padding: 15px;
        margin: 10px;
        width: calc(100% - 20px);
    }

    .notification-content {
        padding: 12px 15px;
        gap: 8px;
    }

    .notification-message {
        font-size: 13px;
    }
}

.page-main {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.page-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(192, 130, 67, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(192, 130, 67, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(192, 130, 67, 0.05) 0%, transparent 50%);
    animation: particle-float 20s ease-in-out infinite;
    z-index: -1;
}

.news-modal {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    max-width: 900px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    transform: scale(0.8) translateY(50px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Montserrat', Arial, sans-serif;
    animation: modalSlideIn 0.5s ease forwards;
}

.news-modal-overlay.show .news-modal {
    transform: scale(1) translateY(0);
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(50px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* --- AUTH MODAL CUSTOM STYLES --- */
.auth-modal-overlay {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    overflow: hidden; /* Prevent scrolling on the overlay */
}

.auth-modal-overlay.show {
    opacity: 1;
    visibility: visible;
}

.auth-modal {
    background-color: #000000;
    border-radius: 20px;
    width: 90%;
    max-width: 400px;
    transform: translateY(-50px);
    transition: transform 0.3s ease;
    position: relative;
    box-sizing: border-box;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    overflow: hidden; /* Ensure no scrollbar on the modal itself */
    max-height: 90vh; /* Limit height to prevent scrollbar */
}

.auth-modal-overlay.show .auth-modal {
    transform: translateY(0);
}

.auth-modal-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
}

.auth-modal-logo {
    height: 40px; /* Adjust as needed */
}

.auth-modal-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
    line-height: 1;
}

.auth-modal-body {
    width: 100%;
    padding: 0 10px;
}

.auth-modal-body h2 {
    color: #fff;
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: bold;
}

.auth-modal-body p {
    color: #aaa;
    font-size: 14px;
    margin-bottom: 20px;
}

.login-form {
    width: 100%;
}

.form-group-login {
    position: relative;
    margin-bottom: 15px;
}

.form-group-login input {
    width: calc(100% - 40px); /* Adjust for icon */
    padding: 12px 15px 12px 40px;
    background-color: #1a1a1a;
    border: 1px solid #333;
    border-radius: 8px;
    color: #fff;
    font-size: 16px;
}

.form-group-login input::placeholder {
    color: #666;
}

.form-group-login .icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    font-size: 18px;
}

.form-group-login .eye-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    font-size: 18px;
    cursor: pointer;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    font-size: 14px;
}

.remember-me {
    color: #aaa;
    display: flex;
    align-items: center;
}

.remember-me input[type="checkbox"] {
    margin-right: 8px;
    appearance: none;
    width: 16px;
    height: 16px;
    border: 1px solid #666;
    border-radius: 4px;
    background-color: #1a1a1a;
    cursor: pointer;
    position: relative;
}

.remember-me input[type="checkbox"]:checked {
    background-color: #c08243; /* Accent color */
    border-color: #c08243;
}

.remember-me input[type="checkbox"]:checked::before {
    content: '\2713'; /* Checkmark */
    display: block;
    color: #fff;
    font-size: 12px;
    text-align: center;
    line-height: 16px;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.forgot-password {
    color: #c08243;
    text-decoration: none;
}

.forgot-password:hover {
    text-decoration: underline;
}

.login-btn {
    width: 100%;
    padding: 12px;
    background-color: #c08243;
    border: none;
    border-radius: 8px;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-bottom: 20px;
}

.login-btn:hover {
    background-color: #a06e33;
}

.divider {
    display: flex;
    align-items: center;
    text-align: center;
    width: 100%;
    margin-bottom: 20px;
}

.divider::before, .divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #333;
}

.divider:not(:empty)::before {
    margin-right: .5em;
}

.divider:not(:empty)::after {
    margin-left: .5em;
}

.or-text {
    color: #666;
    font-size: 14px;
}

.google-login-btn {
    width: 100%;
    padding: 12px;
    background-color: #1a1a1a;
    border: 1px solid #333;
    border-radius: 8px;
    color: #fff;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-bottom: 20px;
}

.google-login-btn:hover {
    background-color: #2a2a2a;
}

.google-icon {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

.register-link {
    color: #aaa;
    font-size: 14px;
}

.register-link a {
    color: #c08243;
    text-decoration: none;
    font-weight: bold;
}

.register-link a:hover {
    text-decoration: underline;
}

/* Mobile adaptations for auth modal */
@media (max-width: 768px) {
    .auth-modal {
        margin: 20px;
        padding: 20px;
        max-width: none;
        width: calc(100% - 40px);
    }
}

@media (max-width: 480px) {
    .auth-modal {
        padding: 0;
        margin: 0;
        width: 100%;
        min-height: 100vh;
    }

    .auth-modal-header {
        padding: 15px 10px 10px;
        margin-bottom: 0;
    }

    .auth-modal-body {
        padding: 15px 10px;
        max-height: calc(100vh - 60px);
    }

    .auth-modal-body h2 {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .auth-modal-body p {
        font-size: 12px;
        margin-bottom: 12px;
    }
    
    /* Cloudflare Turnstile для очень маленьких экранов */
    .cf-turnstile {
        transform: scale(0.7);
        transform-origin: center;
        margin: 10px 0;
    }
    
    /* Форма для маленьких экранов */
    .form {
        padding: 10px;
    }
    
    .form .title {
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    .form .message {
        font-size: 13px;
        margin-bottom: 15px;
    }
    
    .form .input {
        padding: 10px 8px;
        font-size: 15px;
    }
    
    .form .input + span {
        font-size: 12px;
        top: -5px;
        left: 8px;
        padding: 0 4px;
    }
    
    .form .submit,
    .form .sign {
        padding: 10px 12px;
        font-size: 14px;
        margin-top: 12px;
    }
    
    .form .signin,
    .form .signup {
        font-size: 12px;
        margin-top: 12px;
    }

    .form-group-login input {
        font-size: 14px;
        padding: 10px 12px 10px 35px;
    }

    .form-group-login .icon, .form-group-login .eye-icon {
        font-size: 16px;
    }

    .form-options {
        font-size: 12px;
        margin-bottom: 15px;
    }

    .login-btn, .google-login-btn {
        padding: 10px;
        font-size: 16px;
    }

    .register-link {
        font-size: 12px;
    }
}


/* Loading Screen Styles */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
    background-attachment: fixed;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    transition: opacity 0.5s ease-out;
}

.loading-screen.hidden {
    opacity: 0;
    pointer-events: none;
}

.loading-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.loading-logo-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.loading-logo {
    width: 600px;
    height: auto;
    filter: brightness(0) invert(1);
    animation: logoPulse 3s infinite ease-in-out;
}

/* Coffee Loading Bar */
/* Loading animation with bouncing circles */
.loading-wrapper {
    width: 200px;
    height: 60px;
    position: relative;
    z-index: 1;
    margin: 20px auto 0;
}

.loading-circle {
    width: 20px;
    height: 20px;
    position: absolute;
    border-radius: 50%;
    background-color: #C08243;
    left: 15%;
    transform-origin: 50%;
    animation: loading-circle-bounce 0.5s alternate infinite ease;
}

@keyframes loading-circle-bounce {
    0% {
        top: 60px;
        height: 5px;
        border-radius: 50px 50px 25px 25px;
        transform: scaleX(1.7);
    }
    40% {
        height: 20px;
        border-radius: 50%;
        transform: scaleX(1);
    }
    100% {
        top: 0%;
    }
}

.loading-circle:nth-child(2) {
    left: 45%;
    animation-delay: 0.2s;
}

.loading-circle:nth-child(3) {
    left: auto;
    right: 15%;
    animation-delay: 0.3s;
}

.loading-shadow {
    width: 20px;
    height: 4px;
    border-radius: 50%;
    background-color: rgba(192, 130, 67, 0.3);
    position: absolute;
    top: 62px;
    transform-origin: 50%;
    z-index: -1;
    left: 15%;
    filter: blur(1px);
    animation: loading-shadow-bounce 0.5s alternate infinite ease;
}

@keyframes loading-shadow-bounce {
    0% {
        transform: scaleX(1.5);
    }
    40% {
        transform: scaleX(1);
        opacity: 0.7;
    }
    100% {
        transform: scaleX(0.2);
        opacity: 0.4;
    }
}

.loading-shadow:nth-child(4) {
    left: 45%;
    animation-delay: 0.2s;
}

.loading-shadow:nth-child(5) {
    left: auto;
    right: 15%;
    animation-delay: 0.3s;
}


/* Marquee Styles */
.marquee-container {
    position: absolute;
    width: 100%;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.8);
    border-top: 2px solid #C08243;
    border-bottom: 2px solid #C08243;
}

.top-marquee {
    top: 20px;
    left: 0;
}

.bottom-marquee {
    bottom: 20px;
    left: 0;
}

.marquee-text {
    display: inline-block;
    white-space: nowrap;
    font-size: 18px;
    font-weight: 300;
    color: #FFFFFF;
    letter-spacing: 1px;
    animation: marquee 20s linear infinite;
    padding: 10px 0;
}

.top-marquee .marquee-text {
    background: linear-gradient(92.24deg, #FFFFFF -1.32%, #C08243 105.88%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: marqueeTop 15s linear infinite;
}

.bottom-marquee .marquee-text {
    background: linear-gradient(92.24deg, #C08243 -1.32%, #FFFFFF 105.88%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: marqueeBottom 18s linear infinite;
}

/* Loading Screen Animations */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes logoPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.02); opacity: 0.9; }
}



@keyframes marqueeTop {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

@keyframes marqueeBottom {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Mobile responsiveness for loading screen */
@media (max-width: 768px) {
    .loading-logo {
        width: 300px;
    }

    .loading-wrapper {
        width: 150px;
        height: 45px;
    }

    .loading-circle {
        width: 15px;
        height: 15px;
    }

    .loading-circle:nth-child(2) {
        left: 42.5%;
    }

    .loading-circle:nth-child(3) {
        right: 12.5%;
    }

    .loading-shadow {
        width: 15px;
        height: 3px;
        top: 47px;
    }

    .loading-shadow:nth-child(4) {
        left: 42.5%;
    }

    .loading-shadow:nth-child(5) {
        right: 12.5%;
    }


    .marquee-text {
        font-size: 14px;
        letter-spacing: 0.5px;
    }

    .marquee-container {
        top: 10px;
        bottom: 10px;
    }

    .loading-content {
        gap: 30px;
    }
}

/* Login Modal Styles */
.login-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.login-modal-overlay.show {
    opacity: 1;
    visibility: visible;
}

.login-modal {
    background: #2D2D2D;
    backdrop-filter: blur(10px);
    border-radius: 20px;
    width: 571px;
    height: 430px;
    position: relative;
    overflow: hidden;
    transform: scale(0.8) translateY(20px);
    transition: all 0.3s ease;
    border: 1px solid rgba(192, 130, 67, 0.3);
}

.login-modal-overlay.show .login-modal {
    transform: scale(1) translateY(0);
}

.login-modal-header {
    position: relative;
    padding: 30px 30px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-modal-logo {
    width: 120px;
    height: auto;
    filter: brightness(0) invert(1);
}

.login-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 20px;
    color: #FFFFFF;
    transition: all 0.3s ease;
}

.login-modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

.login-modal-body {
    padding: 40px 30px;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
}

/* Mobile styles for login modal */
@media (max-width: 768px) {
    .login-modal {
        width: 95%;
        height: auto;
        min-height: 400px;
        margin: 20px;
    }

    .login-modal-header {
        padding: 25px 20px 15px;
    }

    .login-modal-logo {
        width: 100px;
    }

    .login-modal-close {
        top: 15px;
        right: 15px;
        width: 30px;
        height: 30px;
        font-size: 16px;
    }

    .login-modal-body {
        padding: 30px 20px;
        min-height: 150px;
        font-size: 14px;
    }

    .input-container input {
        width: 100%;
        max-width: 250px;
    }

    .login-submit-btn {
        width: 8em;
        height: 2.8em;
        font-size: 14px;
        margin-top: 25px;
    }

    .login-submit-btn::before {
        height: 2.8em;
    }
}

/* Extra small screens */
@media (max-width: 600px) {
    .login-modal {
        width: 98%;
        height: auto;
        min-height: 380px;
        margin: 10px;
        border-radius: 15px;
    }

    .login-modal-body {
        padding: 25px 15px;
    }

    .input-container input {
        width: 100%;
        max-width: 220px;
    }

    .login-submit-btn {
        width: 7em;
        height: 2.5em;
        font-size: 13px;
        margin-top: 20px;
    }

    .login-submit-btn::before {
        height: 2.5em;
    }
}

/* Login submit button styles */
.login-submit-btn {
    width: 9em;
    height: 3em;
    border-radius: 30em;
    font-size: 15px;
    font-family: 'Montserrat', Arial, sans-serif;
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
    background: linear-gradient(135deg, #2D2D2D 0%, #1a1a1a 100%);
    color: #C08243;
    box-shadow:
        6px 6px 12px rgba(0, 0, 0, 0.3),
        -6px -6px 12px rgba(255, 255, 255, 0.05),
        inset 0 0 0 1px rgba(192, 130, 67, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 30px;
}

.login-submit-btn::before {
    content: '';
    width: 0;
    height: 3em;
    border-radius: 30em;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(135deg, #C08243 0%, #DD9E6C 100%);
    transition: .5s ease;
    display: block;
    z-index: -1;
}

.login-submit-btn:hover {
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow:
        8px 8px 16px rgba(0, 0, 0, 0.4),
        -8px -8px 16px rgba(255, 255, 255, 0.05),
        inset 0 0 0 1px rgba(192, 130, 67, 0.4);
}

.login-submit-btn:hover::before {
    width: 9em;
}

.login-submit-btn:active {
    transform: translateY(0);
}

/* Input container styles */
.input-container {
    width: auto;
    position: static;
    display: flex;
    flex-direction: column-reverse;
    margin-bottom: 8px;
}

.input-container label {
    color: #FFFFFF;
    position: relative;
    top: 2px;
    border: solid #C08243;
    border-top: none;
    border-right: none;
    border-left: none;
    width: fit-content;
    transition: transform 0.2s;
    margin: 0px 0px 0px 12px;
    padding: 0px 4px 0px 4px;
    font-size: 18px;
    background: #2D2D2D;
}

.input-container input:focus + label {
    color: #C08243;
    transform: scale(1.15);
    transform: translateX(0.5rem);
}

.input-container input {
    border: 2px #C08243 solid;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
    border-radius: 8px;
    font-size: 16px;
    outline: none;
    transition: all 0.3s ease;
    width: 280px;
    margin-bottom: 10px;
}

.input-container input:focus {
    outline: none;
    border-color: #C08243;
    box-shadow: 0 0 15px rgba(192, 130, 67, 0.4);
}

/* Login nav item styles */
.login-nav-item {
    background: linear-gradient(135deg, rgba(192, 130, 67, 0.1) 0%, rgba(192, 130, 67, 0.05) 100%);
    border: 1px solid rgba(192, 130, 67, 0.2);
    border-radius: 10px;
    margin-top: 10px;
    transition: all 0.3s ease;
}

.login-nav-item:hover {
    background: linear-gradient(135deg, rgba(192, 130, 67, 0.15) 0%, rgba(192, 130, 67, 0.08) 100%);
    border-color: rgba(192, 130, 67, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(192, 130, 67, 0.2);
}

/* Registration Modal Styles */
.registration-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.registration-modal-overlay.show {
    opacity: 1;
    visibility: visible;
}

.registration-modal {
    background: linear-gradient(135deg, #2D2D2D 0%, #1a1a1a 50%, #2D2D2D 100%);
    border-radius: 20px;
    border: 2px solid rgba(192, 130, 67, 0.3);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    width: 400px;
    max-width: 90vw;
    max-height: 90vh;
    overflow-y: auto;
    transform: scale(0.9) translateY(20px);
    transition: all 0.3s ease;
}

.registration-modal-overlay.show .registration-modal {
    transform: scale(1) translateY(0);
}

.registration-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    border-bottom: 1px solid rgba(192, 130, 67, 0.2);
}

.registration-modal-logo {
    height: 50px;
    filter: brightness(0.8);
}

.registration-modal-close {
    background: none;
    border: none;
    color: #C08243;
    font-size: 28px;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 5px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.registration-modal-close:hover {
    background: rgba(192, 130, 67, 0.2);
    transform: scale(1.1);
}

.registration-modal-body {
    padding: 30px;
}

.registration-title {
    color: #FFFFFF;
    text-align: center;
    font-size: 24px;
    margin-bottom: 25px;
    font-weight: 300;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.registration-submit-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #2D2D2D 0%, #1a1a1a 100%);
    border: 2px solid #C08243;
    border-radius: 10px;
    color: #C08243;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin-top: 20px;
    margin-bottom: 20px;
}

.registration-submit-btn::before {
    content: '';
    width: 0;
    height: 3em;
    border-radius: 30em;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(135deg, #C08243 0%, #DD9E6C 100%);
    transition: .5s ease;
    display: block;
    z-index: -1;
}

.registration-submit-btn:hover {
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow:
        8px 8px 16px rgba(0, 0, 0, 0.4),
        -8px -8px 16px rgba(255, 255, 255, 0.05),
        inset 0 0 0 1px rgba(192, 130, 67, 0.4);
}

.registration-submit-btn:hover::before {
    width: 100%;
}

.registration-submit-btn:active {
    transform: translateY(0);
}

/* Registration link styles */
.registration-link {
    text-align: center;
    margin-top: 15px;
    font-size: 14px;
    color: #CCCCCC;
}

.registration-link-text {
    color: #C08243;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.registration-link-text:hover {
    color: #A56F35;
    text-decoration: underline;
}

/* Login link styles */
.login-link {
    text-align: center;
    margin-top: 15px;
    font-size: 14px;
    color: #CCCCCC;
}

.login-link-text {
    color: #C08243;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.login-link-text:hover {
    color: #A56F35;
    text-decoration: underline;
}

/* Coming Soon placeholder styles */
.coming-soon-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 8px;
    min-height: 200px;
}

.coming-soon-text {
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* === PARTNERS PAGE STYLES === */

/* Partners Content Container */
.partners-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}


/* Partner Types Section */
.partner-types-section {
    margin-bottom: 80px;
}

.partner-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.partner-type-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.partner-type-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.partner-type-card:hover::before {
    left: 100%;
}

.partner-type-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(66, 193, 109, 0.3);
}

.partner-type-header {
    text-align: center;
    margin-bottom: 25px;
}

.partner-type-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(145deg, rgba(66, 193, 109, 0.1), rgba(193, 66, 66, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.partner-type-card:hover .partner-type-icon {
    transform: scale(1.1);
    background: linear-gradient(145deg, rgba(66, 193, 109, 0.2), rgba(193, 66, 66, 0.2));
}

.partner-type-icon svg {
    width: 40px;
    height: 40px;
    transition: all 0.3s ease;
}

.partner-type-card:hover .partner-type-icon svg {
    transform: scale(1.1);
}

.partner-type-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.partner-type-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: center;
}

.partner-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.partner-benefits li {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.partner-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #42c16d;
    font-weight: bold;
}

.partner-contact-btn {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(45deg, #42c16d, #c3a14a);
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    width: 100%;
    text-align: center;
}

.partner-contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(66, 193, 109, 0.3);
}

/* Current Partners Showcase */
.current-partners-section {
    margin-bottom: 80px;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(45deg, #42c16d, #c3a14a);
    border-radius: 2px;
}

.partners-showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.partner-showcase-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.partner-showcase-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(66, 193, 109, 0.1), rgba(193, 156, 74, 0.1));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.partner-showcase-card:hover::before {
    opacity: 1;
}

.partner-showcase-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border-color: rgba(66, 193, 109, 0.3);
}

.partner-logo-placeholder {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(145deg, rgba(66, 193, 109, 0.2), rgba(193, 156, 74, 0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.partner-showcase-card:hover .partner-logo-placeholder {
    transform: scale(1.1);
    background: linear-gradient(145deg, rgba(66, 193, 109, 0.3), rgba(193, 156, 74, 0.3));
}

.partner-initials {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
}

.partner-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin: 0 0 10px 0;
}

.partner-description {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.4;
}


/* Responsive Design */
@media (max-width: 768px) {

    .partner-types-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .partner-type-card {
        padding: 30px 20px;
    }

    .partners-showcase-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }

}

@media (max-width: 480px) {

    .partners-showcase-grid {
        grid-template-columns: 1fr;
    }

    .partner-showcase-card {
        max-width: 300px;
        margin: 0 auto;
    }
}

/* ===================================================
   ROASTERY PAGE STYLES
   =================================================== */

/* Roastery Header */
.roastery-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 90px;
    background: #000000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 1000;
    box-shadow: 0px 248px 99px rgba(0, 0, 0, 0.01), 0px 139px 84px rgba(0, 0, 0, 0.05), 0px 62px 62px rgba(0, 0, 0, 0.09), 0px 15px 34px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.roastery-header.hidden {
    transform: translateY(-100%);
}

.roastery-header .logo {
    width: 60px;
    height: auto;
    max-width: 90px;
    margin-bottom: 0;
    align-self: center;
}

.roastery-header .header-buttons {
    display: flex;
    align-items: center;
    gap: 20px;
}

.roastery-header .animated-cart-btn {
    cursor: pointer;
    border: none;
    background: #C08243;
    color: #fff;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    display: grid;
    place-content: center;
    transition: background 300ms, transform 200ms;
    font-weight: 600;
    margin-right: 10px;
}

.roastery-header .cart-button__text {
    position: absolute;
    inset: 0;
    animation: text-rotation 8s linear infinite;

    > span {
        position: absolute;
        transform: rotate(calc(51.4deg * var(--index)));
        inset: 4px;
        font-size: 10px;
        font-weight: 600;
    }
}

.roastery-header .cart-button__circle {
    position: relative;
    width: 25px;
    height: 25px;
    overflow: hidden;
    background: #fff;
    color: #C08243;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.roastery-header .cart-button__icon {
    width: 15px;
    height: 15px;
    transition: transform 0.3s ease;
}

.roastery-header .cart-button__icon--copy {
    position: absolute;
    transform: translate(-150%, 150%);
}

.roastery-header .animated-cart-btn:hover {
    background: #A56F35;
    transform: scale(1.05);
}

.roastery-header .animated-cart-btn:hover .cart-button__icon {
    color: #A56F35;
}

.roastery-header .animated-cart-btn:hover .cart-button__icon:first-child {
    transition: transform 0.3s ease-in-out;
    transform: translate(150%, -150%);
}

.roastery-header .animated-cart-btn:hover .cart-button__icon--copy {
    transition: transform 0.3s ease-in-out 0.1s;
    transform: translate(0);
}

.roastery-header .cart-count {
    position: absolute;
    top: -6px;
    right: -6px;
    background: #C08243;
    color: #fff;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(192, 130, 67, 0.3);
    border: 2px solid #fff;
    z-index: 10;
}

.roastery-header .burger-menu-btn {
    width: 50px;
    height: 50px;
    background: #000000;
    border: 1px solid #B8B7B7;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.roastery-header .burger-menu-btn:hover {
    background: #1a1a1a;
}

.roastery-header .burger-menu-btn span {
    width: 20px;
    height: 2px;
    background: #B8B7B7;
    transition: all 0.3s ease;
}

/* Roastery Content */
.roastery-content {
    padding-top: 120px;
    min-height: 100vh;
}

/* Title Section */
.roastery-title-section {
    text-align: center;
    margin-bottom: 60px;
}

.roastery-title {
    font-family: 'HvDTrial Brandon Text', Arial, sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 32px;
    line-height: 118%;
    display: flex;
    align-items: center;
    text-align: center;
    text-transform: uppercase;
    color: #FFFFFF;
    margin: 0 auto 20px auto;
    max-width: 694px;
    justify-content: center;
}

.roastery-title-section .title-underline {
    width: 223px;
    height: 5px;
    background: #F3BE2C;
    border-radius: 3px;
    margin: 0 auto;
}

/* Main Container */
.roastery-main-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1905px;
    margin: 0 auto;
    padding: 0 136px 100px 136px;
    gap: 100px;
}

.roastery-text-content {
    flex: 1;
    max-width: 600px;
}

.roastery-description {
    font-family: 'Montserrat', Arial, sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.6;
    color: #FFFFFF;
}

.roastery-description p {
    margin: 0 0 20px 0;
}

.roastery-description p:last-child {
    margin-bottom: 0;
}

.roastery-image-container {
    flex: 1;
    max-width: 407px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.roastery-image {
    width: 100%;
    height: auto;
    max-width: 407px;
    border-radius: 8px;
}

/* Process Section */
.roastery-process {
    padding: 100px 136px;
    background: rgba(255, 255, 255, 0.02);
    margin: 0 auto;
    max-width: 1905px;
}

.process-title {
    font-family: 'HvDTrial Brandon Text', Arial, sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 28px;
    line-height: 118%;
    text-align: center;
    text-transform: uppercase;
    color: #FFFFFF;
    margin: 0 0 60px 0;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.process-step {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: transform 0.3s ease, background 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #F3BE2C, #C08243);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    font-size: 24px;
    color: #000000;
}

.process-step h3 {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: #FFFFFF;
    margin: 0 0 15px 0;
    text-transform: uppercase;
}

.process-step p {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5;
    color: #CCCCCC;
    margin: 0;
}

/* Coffee Types Section */
.roastery-coffees {
    padding: 100px 136px 150px 136px;
    max-width: 1905px;
    margin: 0 auto;
}

.coffees-title {
    font-family: 'HvDTrial Brandon Text', Arial, sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 28px;
    line-height: 118%;
    text-align: center;
    text-transform: uppercase;
    color: #FFFFFF;
    margin: 0 0 60px 0;
}

.coffee-types {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.coffee-type {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, background 0.3s ease;
}

.coffee-type:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

.coffee-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px auto;
    border-radius: 50%;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.coffee-image img {
    width: 80px;
    height: 80px;
    object-fit: cover;
}

.coffee-type h3 {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 600;
    font-size: 20px;
    color: #FFFFFF;
    margin: 0 0 15px 0;
    text-transform: uppercase;
}

.coffee-type p {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5;
    color: #CCCCCC;
    margin: 0 0 20px 0;
}

.coffee-characteristics {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.characteristic {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 500;
    font-size: 12px;
    color: #F3BE2C;
    background: rgba(243, 190, 44, 0.1);
    padding: 5px 10px;
    border-radius: 20px;
    border: 1px solid rgba(243, 190, 44, 0.3);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .roastery-main-container {
        padding: 0 60px 80px 60px;
        gap: 50px;
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

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

@media (max-width: 768px) {
    .roastery-header {
        padding: 0 20px;
        height: 70px;
    }

    .roastery-header .logo {
        width: 60px;
        max-width: 90px;
    }

    .roastery-header .animated-cart-btn {
        width: 50px;
        height: 50px;
        margin-right: 5px;
    }

    .roastery-header .cart-button__circle {
        width: 25px;
        height: 25px;
    }

    .roastery-header .cart-button__icon {
        width: 15px;
        height: 15px;
    }

    .roastery-header .cart-count {
        width: 18px;
        height: 18px;
        font-size: 9px;
        top: -5px;
        right: -5px;
    }

    .roastery-header .burger-menu-btn {
        width: 50px;
        height: 50px;
    }

    .roastery-content {
        padding-top: 100px;
    }

    .roastery-main-container {
        flex-direction: column;
        padding: 0 20px 60px 20px;
        gap: 40px;
    }

    .roastery-text-content {
        max-width: 100%;
    }

    .roastery-process,
    .roastery-coffees {
        padding: 60px 20px;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .coffee-types {
        grid-template-columns: 1fr;
    }

    .roastery-title {
        font-size: 24px;
    }

    .process-title,
    .coffees-title {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    /* Site header on small mobile */
    .site-header {
        padding: 0 15px;
        height: 50px;
    }

    .site-header .logo {
        width: 45px;
        max-width: 60px;
    }

    .site-header .burger-menu-btn {
        width: 40px;
        height: 40px;
    }

    /* Main content padding for small mobile */
    .site-header + .main-content,
    .site-header + main {
        padding-top: 90px;
    }

    .roastery-header {
        padding: 0 15px;
        height: 70px;
    }

    .roastery-header .logo {
        width: 8px;
        max-width: 12px;
    }

    .roastery-header .header-buttons {
        gap: 10px;
    }

    .roastery-header .animated-cart-btn {
        width: 40px;
        height: 40px;
        margin-right: 0;
    }

    .roastery-header .cart-button__circle {
        width: 20px;
        height: 20px;
    }

    .roastery-header .cart-button__icon {
        width: 12px;
        height: 12px;
    }

    .roastery-header .cart-count {
        width: 16px;
        height: 16px;
        font-size: 8px;
        top: -4px;
        right: -4px;
        border-width: 1px;
    }

    .roastery-header .burger-menu-btn {
        width: 20px;
        height: 20px;
    }

    .roastery-main-container {
        padding: 0 15px 40px 15px;
    }

    .roastery-content {
        padding-top: 90px;
    }

    .roastery-process,
    .roastery-coffees {
        padding: 40px 15px;
    }

    .roastery-title {
        font-size: 20px;
    }

    .process-title,
    .coffees-title {
        font-size: 20px;
    }
}

/* Mobile language selector optimizations */
@media (max-width: 480px) {
    .lang-toggle-btn {
        padding: 8px 12px !important;
        min-width: 70px !important;
        height: 28px !important;
        font-size: 11px !important;
        border-radius: 20px !important;
    }

    .lang-toggle-icon {
        font-size: 12px !important;
        margin-right: 4px !important;
    }

    .current-lang {
        font-size: 11px !important;
        font-weight: 600 !important;
    }

    .lang-menu {
        min-width: 50px !important;
        border-radius: 6px !important;
    }

    .lang-menu-item {
        padding: 6px 10px !important;
        font-size: 11px !important;
        min-height: 24px !important;
    }

    /* Language selector positioning on mobile - higher and more to the right */
    .language-selector,
    .language-selector-right,
    .page-main .language-selector {
        top: 5px !important;
        right: 5px !important;
    }
    
    /* Move "Оценка" text to the LEFT on mobile */
    .rating-group label {
        margin-left: -25px !important;
        margin-right: 20px !important;
        margin-top: 2px !important;
    }
}
