  * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: #fff;
            color: #333;
        }
        
        /* Header */
        header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 5%;
            background-color: white;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        
        .logo {
            font-weight: bold;
            font-size: 1.5rem;
            color: #692a30;
			display: flex;
  align-items: center;
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav li {
            margin: 0 15px;
        }
        
        nav a {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            transition: color 0.3s;
        }
        
        nav a:hover {
            color: #692a30;
        }
        
        .contact-btn {
            background-color: #692a30;
            color: white;
            padding: 8px 15px;
            border-radius: 5px;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 5px;
            font-weight: 500;
        }
        
        .contact-btn:hover {
            background-color: #ac4f57;
        }
        
        /* Hero Section */
        .hero {
            height: 70vh;
            background: linear-gradient(rgba(255,255,255,0.8), rgba(255,255,255,0.8)), url('images/hero-fashion.jpg') no-repeat center center;
            background-size: cover;
            display: flex;
            align-items: center;
            padding: 0 5%;
        }
        
        .hero-content {
            max-width: 600px;
        }
        
        .hero h1 {
            font-size: 3rem;
            margin-bottom: 10px;
            line-height: 1.2;
        }
        
        .hero h2 {
            font-size: 2.5rem;
            color: #692a30;
            margin-bottom: 20px;
            font-weight: bold;
        }
        
        .hero p {
            margin-bottom: 30px;
            color: #000;
            line-height: 1.5;
			font-size: 18px;
        }
        
        .hero-buttons {
            display: flex;
            gap: 15px;
        }
        
        .btn {
            padding: 10px 20px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s;
        }
        
        .btn-primary {
            background-color: #692a30;
            color: white;
        }
        
        .btn-primary:hover {
            background-color: #ac4f57;
            transform: translateY(-2px);
        }
        
        .btn-secondary {
            background-color: white;
            color: #692a30;
            border: 1px solid #692a30;
        }
        
        .btn-secondary:hover {
            background-color: #f8f8f8;
            transform: translateY(-2px);
        }
        
        /* Assortment Section */
        .assortment {
            padding: 80px 5% 40px;
            text-align: center;
        }
        
        .section-title {
            font-size: 2.5rem;
            margin-bottom: 15px;
            color: #333;
        }
        
        .section-subtitle {
            color: #666;
            margin-bottom: 50px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.5;
        }
        
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 30px;
			margin: 40px 0;
        }
        
        .product-card {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s;
        }
        
        .product-card:hover {
            transform: translateY(-5px);
        }
        
        .product-img {
            width: 100%;
            height: 300px;
            object-fit: cover;
        }
		
		.logo-img {
            width: 100%;
  height: 50px;
  object-fit: cover;
  border-radius: 50px;
  padding-right: 10px;
  margin-right: 10px;
        }
        
        /* Contacts Section */
        .contacts {
            padding: 80px 5%;
            text-align: center;
        }
        
        .contacts-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
            margin-top: 50px;
			flex-direction: row;
        }
        
        .contact-box {
            background-color: #f8f8f8;
            padding: 30px;
            border-radius: 10px;
            width: 47%;
           
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        .contact-box h3 {
            margin-bottom: 20px;
            color: #333;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .contact-box i {
            color: #692a30;
        }
        
        .contact-info {
            margin-top: 20px;
            text-align: left;
        }
        
        .contact-info p {
            margin: 10px 0;
            line-height: 1.5;
			display: flex;
  align-items: center;
        }
        
        .contact-info a {
            color: #692a30;
            text-decoration: none;
            font-weight: 500;
        }
        
        .contact-info a:hover {
            text-decoration: underline;
        }
        
        .map-container {
            width: 100%;
            height: 400px;
            margin-top: 50px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            position: relative;
        }
        
        .map-placeholder {
            width: 100%;
            height: 100%;
            background: url('https://placehold.co/1200x400/eeeeee/cccccc?text=Карта+магазина') no-repeat center center;
            background-size: cover;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #666;
            font-size: 1.2rem;
        }
        
        .map-overlay {
            position: absolute;
            top: 20px;
            left: 20px;
            background: white;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            max-width: 300px;
        }
        
        .map-overlay h4 {
            color: #692a30;
            margin-bottom: 10px;
        }
        
        .map-overlay p {
            margin: 5px 0;
            line-height: 1.5;
        }
        
        .map-buttons {
            display: flex;
            gap: 10px;
            margin-top: 15px;
        }
        
        .map-btn {
            padding: 5px 10px;
            border-radius: 5px;
            text-decoration: none;
            font-size: 0.9rem;
            background-color: #692a30;
            color: white;
            transition: background-color 0.3s;
        }
        
        .map-btn:hover {
            background-color: #ac4f57;
        }
        
        /* Footer */
        footer {
            background-color: #692a30;
            color: white;
            padding: 40px 5% 20px;
            text-align: center;
        }
        
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 30px;
            margin-bottom: 30px;
        }
        
        .footer-section {
            flex: 1;
            min-width: 250px;
        }
        
        .footer-section h3 {
            margin-bottom: 20px;
            font-size: 1.2rem;
        }
        
        .footer-section p {
            line-height: 1.5;
            margin-bottom: 15px;
        }
        
        .footer-section a {
            color: white;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
            margin: 10px 0;
            transition: opacity 0.3s;
			justify-content: center;
        }
        
        .footer-section a:hover {
            opacity: 0.8;
        }
        
        .copyright {
            border-top: 1px solid rgba(255,255,255,0.2);
            padding-top: 20px;
            font-size: 0.9rem;
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .hero {
                height: auto;
                padding: 50px 5%;
                flex-direction: column;
                text-align: center;
            }
            
            .hero-content {
                max-width: 100%;
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .hero h2 {
                font-size: 2rem;
            }
            
            .hero-buttons {
                flex-direction: column;
                width: 100%;
                max-width: auto;
            }
			
			.contact-box {
  background-color: #f8f8f8;
  padding: 30px;
  border-radius: 10px;
  width: 100%;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
            
            .section-title {
                font-size: 2rem;
            }
            
            .products-grid {
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            }
            
            .contact-box {
                max-width: 100%;
            }
            
            .footer-content {
                flex-direction: column;
            }
        }
        
        @media (max-width: 480px) {
            header {
                flex-direction: column;
                padding: 10px 5%;
            }
            
            nav ul {
                margin: 15px 0;
            }
            
            .hero {
                padding: 30px 5%;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
            
            .map-container {
                height: 300px;
            }
        }
		
		
		.transition-opacity {
  transition-property: opacity;
  transition-timing-function: cubic-bezier(.4,0,.2,1);
  transition-duration: .15s;
  opacity: 1;
}

.bg-gradient-to-t {
  background-image: linear-gradient(to top,var(--tw-gradient-stops));
}

.opacity-0 {
  opacity: 1;
}
.p-6 {
  padding: 1.5rem;
}
.to-transparent {
  --tw-gradient-to: transparent var(--tw-gradient-to-position);
}

.text-foreground {
  color: hsl(var(--foreground));
}
.font-semibold {
  font-weight: 600;
}
.text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}

.wrap{
    max-width: 1440pxpx;
    padding: 56px 20px 96px;
    margin: 0 auto;
  }

  /* заголовки */
  .title{
    text-align:center;
    font-weight:800;
    font-size: clamp(32px, 3.6vw, 56px);
    letter-spacing:.3px;
    margin: 20px 0 12px;
  }
  .subtitle{
    max-width: 980px;
    margin: 0 auto 42px;
    text-align:center;
    color:var(--muted);
    font-size: clamp(16px, 1.6vw, 22px);
  }

  /* карточки */
  .cards{
    display:grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
  }
  .card{
    background:var(--bg2);
    border-radius: var(--radius);
    border:1px solid var(--card-border);
    padding: 38px 32px 36px;
    text-align:center;
    box-shadow: var(--shadow);
    transition: transform .25s ease, box-shadow .25s ease;
    opacity:0;                  /* для анимации появления */
    transform: translateY(14px);/* для анимации появления */
  }
  .card.visible{
    opacity:1;
    transform: translateY(0);
  }
  .card:hover{
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(34,24,18,.10);
  }

  .icon-wrap{
    width:86px;height:86px;
    margin:0 auto 18px;
    display:grid;place-items:center;
    border-radius:50%;
    background: radial-gradient(120% 120% at 30% 20%, #f8f8f8 0, #f8f8f8 65%);
  }
  .icon{
    width:40px;height:40px;
    color:#2b231d;
  }

  .card h3{
    margin: 8px 0 12px;
    font-size: clamp(20px, 1.8vw, 28px);
  }
  .card p{
    margin:0 auto;
    color:var(--muted);
    max-width: 480px;
    font-size: 17px;
  }

  /* адаптация */
  @media (max-width: 980px){
    .cards{ grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 640px){
    .wrap{ padding: 40px 16px 70px; }
    .cards{ grid-template-columns: 1fr; }
    .card{ padding:28px 22px; }
    .icon-wrap{ width:76px;height:76px; }
    .icon{ width:34px;height:34px; }
  }