:root {
    --primary-color: #e91e63;
    --secondary-color: #f06292;
    --accent-color: #ff4081;
    --dark-color: #212121;
    --light-color: #fafafa;
    --text-color: #424242;
    --border-radius: 16px;
    --shadow: 0 8px 32px rgba(233, 30, 99, 0.15);
    --gradient-primary: linear-gradient(135deg, #e91e63, #f06292, #ff4081);
    --gradient-dark: linear-gradient(135deg, #212121, #424242);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont, Roboto, sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
    font-weight: 400;
    letter-spacing: -0.01em;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(233, 30, 99, 0.1);
    color: var(--text-color);
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 32px rgba(0,0,0,0.08);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo h1 {
    font-size: 1.8rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-menu a:hover {
    background: rgba(233, 30, 99, 0.1);
    color: var(--primary-color);
    transform: translateY(-1px);
}

.hero {
    background: var(--gradient-primary);
    color: white;
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20"><defs><radialGradient id="a" cx="50%" cy="0%" r="100%"><stop offset="0%" style="stop-color:white;stop-opacity:0.1"/><stop offset="100%" style="stop-color:white;stop-opacity:0"/></radialGradient></defs><rect width="100" height="20" fill="url(%23a)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h2 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
    text-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    font-weight: 300;
}

.hero-images {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.dress-showcase {
    text-align: center;
}

.hero-dress {
    width: 220px;
    height: 320px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 3px solid rgba(255,255,255,0.2);
}

.hero-dress:hover {
    transform: scale(1.08) translateY(-8px);
    box-shadow: 0 30px 80px rgba(0,0,0,0.4);
    border-color: rgba(255,255,255,0.4);
}

.dress-label {
    margin-top: 1rem;
    font-weight: bold;
    font-size: 1.1rem;
}

.hero-note {
    margin-top: 1rem;
    font-size: 1.1rem;
    color: #fff;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.btn-primary, .btn-secondary {
    padding: 16px 32px;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.02em;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-block;
    text-transform: uppercase;
}

.btn-primary {
    background: rgba(255,255,255,0.95);
    color: var(--primary-color);
    box-shadow: 0 8px 32px rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
}

.btn-secondary {
    background: rgba(255,255,255,0.1);
    color: white;
    border: 2px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(10px);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 40px rgba(255,255,255,0.3);
    background: white;
}

.btn-secondary:hover {
    transform: translateY(-3px) scale(1.02);
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.6);
}

.sukienki-section {
    padding: 80px 0;
    background: var(--light-color);
}

.trust-section {
    margin: 3rem 0;
}

.trust-badges {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: white;
    padding: 2rem 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    min-width: 220px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(233, 30, 99, 0.08);
}

.trust-badge:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 16px 64px rgba(233, 30, 99, 0.25);
    border-color: rgba(233, 30, 99, 0.2);
}

.trust-icon {
    font-size: 2rem;
}

.trust-text strong {
    color: var(--primary-color);
    font-size: 1.1rem;
    display: block;
}

.trust-text p {
    margin: 0;
    color: var(--text-color);
    font-size: 0.9rem;
}

.sukienki-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.sukienki-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.sukienka-card {
    background: white;
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(233, 30, 99, 0.05);
    position: relative;
    overflow: hidden;
}

.sukienka-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.sukienka-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 80px rgba(233, 30, 99, 0.2);
    border-color: rgba(233, 30, 99, 0.15);
}

.sukienka-card:hover::before {
    transform: scaleX(1);
}

.sukienka-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.sukienka-card ul {
    list-style: none;
    padding-left: 0;
}

.sukienka-card li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.sukienka-card li:before {
    content: "✨ ";
    color: var(--primary-color);
}

.stylizacje-section {
    padding: 80px 0;
}

.tips-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.tip-card {
    background: linear-gradient(135deg, #fff, #ffd4e5);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(255,20,147,0.1);
}

.tip-card h3 {
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.gdzie-kupic-section {
    padding: 80px 0;
    background: var(--light-color);
}

.shopping-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.shop-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.shop-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.vinted-link {
    display: inline-block;
    margin-top: 1rem;
    padding: 10px 25px;
    background: #09B1BA;
    color: white;
    text-decoration: none;
    border-radius: var(--border-radius);
    transition: background 0.3s;
}

.vinted-link:hover {
    background: #088a92;
}

.faq-section {
    padding: 80px 0;
}

.faq-item {
    background: white;
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--primary-color);
    border-radius: var(--border-radius);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.faq-item h3 {
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.social-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--dark-color), #2a2a2a);
    color: white;
    text-align: center;
}

.social-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.social-card {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    color: white;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.social-card:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-5px);
}

.social-card.tiktok:hover {
    border-color: #ff0050;
}

.social-card.instagram:hover {
    border-color: #E4405F;
}

.social-card.vinted:hover {
    border-color: #09B1BA;
}

.social-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.social-card p {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.social-card span {
    font-size: 0.9rem;
    opacity: 0.9;
}

.blog-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 80px 0;
    text-align: center;
}

.blog-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.blog-articles {
    padding: 80px 0;
}

.blog-post {
    background: white;
    padding: 3rem;
    margin-bottom: 3rem;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.blog-post h3 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.blog-post time {
    color: #666;
    font-size: 0.9rem;
}

.blog-post h4 {
    color: var(--dark-color);
    margin: 2rem 0 1rem 0;
}

.blog-cta {
    background: linear-gradient(135deg, #ffd4e5, #fff);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin-top: 2rem;
    text-align: center;
}

.blog-cta a {
    color: var(--primary-color);
    font-weight: bold;
}

.reviews-section {
    padding: 80px 0;
    background: var(--light-color);
}

.review-card {
    background: white;
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.rating {
    font-size: 1.5rem;
    margin: 1rem 0;
    color: gold;
}

.review-meta {
    background: #f0f0f0;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    font-size: 0.9rem;
    margin-top: 1rem;
}

.trends-section {
    padding: 80px 0;
}

.trend-item {
    background: linear-gradient(to right, #fff, #ffd4e5);
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: var(--border-radius);
    border-left: 5px solid var(--primary-color);
}

.trend-item h3 {
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.shopping-guide {
    padding: 80px 0;
    background: var(--light-color);
}

.guide-content {
    background: white;
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.guide-content h3 {
    color: var(--primary-color);
    margin: 2rem 0 1rem 0;
}

.guide-content h3:first-child {
    margin-top: 0;
}

.blog-social {
    padding: 80px 0;
    background: var(--dark-color);
    color: white;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.social-box {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    color: white;
    transition: all 0.3s;
}

.social-box:hover {
    background: rgba(255,20,147,0.2);
    transform: translateY(-5px);
}

.newsletter-signup {
    background: rgba(255,255,255,0.1);
    padding: 3rem;
    border-radius: var(--border-radius);
    margin-top: 3rem;
}

#newsletter-form {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
}

#newsletter-form input {
    padding: 12px 20px;
    border: none;
    border-radius: var(--border-radius);
    width: 300px;
    font-size: 1rem;
}

#newsletter-form button {
    padding: 12px 30px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s;
}

#newsletter-form button:hover {
    background: #e61380;
}

.kategorie-section {
    padding: 80px 0;
    background: var(--light-color);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.category-item {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    border: 3px solid transparent;
    transition: all 0.3s;
}

.category-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.category-item h3 {
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.category-item strong {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.dlaczego-section {
    padding: 80px 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-card {
    background: linear-gradient(135deg, #fff, #ffd4e5);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: 0 5px 15px rgba(255,20,147,0.1);
    transition: transform 0.3s;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-card h3 {
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.stock-info {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 3rem;
    border-radius: var(--border-radius);
    text-align: center;
    margin-top: 3rem;
    box-shadow: 0 10px 30px rgba(255,20,147,0.3);
}

.stock-info h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.rozmiary-section {
    padding: 80px 0;
    background: var(--light-color);
}

.size-table {
    width: 100%;
    max-width: 600px;
    margin: 2rem auto;
    border-collapse: collapse;
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.size-table th,
.size-table td {
    padding: 1rem;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.size-table th {
    background: var(--primary-color);
    color: white;
    font-weight: bold;
}

.size-table tr:last-child td {
    border-bottom: none;
}

.size-table tr:nth-child(even) {
    background: #f9f9f9;
}

.contact-section {
    padding: 100px 0;
    background: var(--gradient-dark);
    color: white;
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20"><defs><radialGradient id="b" cx="50%" cy="100%" r="100%"><stop offset="0%" style="stop-color:rgba(233,30,99,0.1)"/><stop offset="100%" style="stop-color:rgba(233,30,99,0)"/></radialGradient></defs><rect width="100" height="20" fill="url(%23b)"/></svg>');
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.contact-card {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: 24px;
    text-decoration: none;
    color: white;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255,255,255,0.05);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.contact-card:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-12px) scale(1.02);
    border-color: rgba(255,255,255,0.2);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.contact-card:hover::before {
    transform: translateY(0);
}

.platform-icon {
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 3;
}

.platform-icon svg {
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
}

.contact-card:hover .platform-icon svg {
    transform: scale(1.1) translateY(-2px);
    filter: drop-shadow(0 8px 16px rgba(0,0,0,0.3));
}

.contact-card.vinted:hover {
    border-color: #09B1BA;
}

.contact-card.tiktok:hover {
    border-color: #ff0050;
}

.contact-card.instagram:hover {
    border-color: #E4405F;
}

.contact-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.username {
    font-size: 1.3rem;
    color: var(--primary-color);
    font-weight: bold;
    margin-bottom: 1rem;
}

.cta {
    background: var(--primary-color);
    color: white;
    padding: 10px 20px;
    border-radius: var(--border-radius);
    display: inline-block;
    margin-top: 1rem;
    font-weight: bold;
}

.urgent-cta {
    background: linear-gradient(135deg, #ff4444, #ff0050);
    color: white;
    padding: 3rem;
    border-radius: var(--border-radius);
    text-align: center;
    margin-top: 3rem;
    box-shadow: 0 10px 30px rgba(255,68,68,0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 10px 30px rgba(255,68,68,0.3); }
    50% { box-shadow: 0 15px 40px rgba(255,68,68,0.5); }
    100% { box-shadow: 0 10px 30px rgba(255,68,68,0.3); }
}

.urgent-cta h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.price-tag {
    background: var(--primary-color);
    color: white;
    padding: 10px 20px;
    border-radius: var(--border-radius);
    font-weight: bold;
    font-size: 1.2rem;
    text-align: center;
    margin: 1rem 0;
}

.catalog-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 80px 0;
    text-align: center;
}

.catalog-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.product-catalog {
    padding: 80px 0;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.product-card {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.product-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.product-card .product-image:not(img) {
    background: linear-gradient(135deg, #ffd4e5, #fff);
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: bold;
}

.product-card h3 {
    padding: 1rem;
    color: var(--dark-color);
    margin: 0;
}

.product-desc {
    padding: 0 1rem;
    color: #666;
    margin: 0;
}

.product-info {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.price {
    background: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: var(--border-radius);
    font-weight: bold;
    display: inline-block;
    width: fit-content;
}

.sizes {
    color: #666;
    font-size: 0.9rem;
}

.stock {
    color: var(--primary-color);
    font-weight: bold;
    font-size: 0.9rem;
}

.product-btn {
    background: var(--primary-color);
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: bold;
    text-align: center;
    margin: 1rem;
    display: block;
    transition: background 0.3s;
}

.product-btn:hover {
    background: #e61380;
}

.catalog-info {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 3rem;
    border-radius: var(--border-radius);
    text-align: center;
    margin-top: 3rem;
    box-shadow: 0 10px 30px rgba(255,20,147,0.3);
}

.catalog-info h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.best-sellers {
    padding: 80px 0;
    background: var(--light-color);
}

.bestseller-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.bestseller-item {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.bestseller-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(135deg, #gold, #orange);
}

.bestseller-item h3 {
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.bestseller-item strong {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.why-choose-us {
    padding: 80px 0;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.reason-card {
    background: linear-gradient(135deg, #fff, #ffd4e5);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: 0 5px 15px rgba(255,20,147,0.1);
    transition: transform 0.3s;
}

.reason-card:hover {
    transform: translateY(-5px);
}

.reason-card h3 {
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

footer {
    background: var(--dark-color);
    color: white;
    padding: 2rem 0;
    text-align: center;
}

.footer-nav {
    margin-top: 1rem;
}

.footer-nav a {
    color: white;
    text-decoration: none;
    margin: 0 1rem;
}

.footer-nav a:hover {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .nav-menu {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .hero-content h2 {
        font-size: 2rem;
    }

    .hero-images {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .hero-dress {
        width: 180px;
        height: 270px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .trust-badges {
        flex-direction: column;
        align-items: center;
    }

    .trust-badge {
        min-width: auto;
        width: 100%;
        max-width: 280px;
    }

    .sukienki-grid,
    .tips-container,
    .shopping-options,
    .social-links {
        grid-template-columns: 1fr;
    }

    #newsletter-form {
        flex-direction: column;
        align-items: center;
    }

    #newsletter-form input {
        width: 100%;
        max-width: 300px;
    }
}