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

:root {
    --primary: #1a2332;
    --secondary: #d4af37;
    --accent: #f5f1e8;
    --text: #2c3e50;
    --light: #ffffff;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text);
    line-height: 1.6;
}

.navbar {
    background: var(--light);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 3px;
}

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

.nav-menu a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--secondary);
}

.nav-icons {
    display: flex;
    gap: 1.5rem;
    font-size: 1.2rem;
    cursor: pointer;
}

.nav-icons i {
    position: relative;
    transition: color 0.3s;
}

.nav-icons i:hover {
    color: var(--secondary);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--secondary);
    color: var(--light);
    font-size: 0.7rem;
    padding: 2px 6px;
    border-radius: 50%;
}

.hero {
    height: 85vh;
    background: linear-gradient(135deg, var(--primary) 0%, #2c3e50 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--light);
    position: relative;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 0;
    object-fit: cover;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 35, 50, 0.6);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}
    font-size: 4rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.hero-content p {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    color: var(--accent);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.page-header {
    background: linear-gradient(135deg, var(--primary) 0%, #2c3e50 100%);
    color: var(--light);
    text-align: center;
    padding: 8rem 2rem 5rem;
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, transparent, var(--light));
}

.page-header h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    letter-spacing: 4px;
    font-weight: 300;
    text-transform: uppercase;
}

.page-header p {
    font-size: 1.3rem;
    color: var(--accent);
    font-weight: 300;
    letter-spacing: 1px;
}

.sale-header {
    background: linear-gradient(135deg, var(--secondary) 0%, #c9a02c 100%);
    color: var(--primary);
}

.sale-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #e74c3c;
    color: var(--light);
    padding: 8px 15px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
    z-index: 10;
}

.old-price {
    text-decoration: line-through;
    color: #95a5a6;
    font-size: 1rem;
    margin-right: 10px;
}

.btn {
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--secondary);
    color: var(--primary);
}

.btn-primary:hover {
    background: #c9a02c;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--light);
    border: 2px solid var(--light);
}

.btn-secondary:hover {
    background: var(--light);
    color: var(--primary);
}

.btn-light {
    background: var(--light);
    color: var(--primary);
}

.btn-light:hover {
    background: var(--secondary);
    color: var(--light);
}

.categories {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    max-width: 1400px;
    margin: 0 auto;
}

.category-card {
    height: 500px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.3);
    transition: background 0.3s;
}

.category-card:hover::before {
    background: rgba(0,0,0,0.5);
}

.category-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--light);
}

.category-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.featured {
    padding: 6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    background: var(--light);
}

.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    color: var(--primary);
    letter-spacing: 3px;
    font-weight: 300;
    text-transform: uppercase;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: var(--secondary);
    margin: 1.5rem auto 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.product-card {
    background: var(--light);
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    transition: transform 0.4s, box-shadow 0.4s;
    position: relative;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(26,35,50,0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s;
    z-index: 1;
    pointer-events: none;
}

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

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

.product-image {
    height: 350px;
    background-size: cover;
    background-position: center;
}

.product-info {
    padding: 1.5rem;
    text-align: center;
}

.product-info h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.price {
    font-size: 1.5rem;
    color: var(--secondary);
    font-weight: 700;
    margin-bottom: 1rem;
}

.btn-add-cart {
    width: 100%;
    padding: 0.8rem;
    background: var(--primary);
    color: var(--light);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-add-cart:hover {
    background: var(--secondary);
    color: var(--primary);
}

.promo-banner {
    background: linear-gradient(135deg, var(--secondary) 0%, #c9a02c 100%);
    padding: 5rem 2rem;
    text-align: center;
    color: var(--primary);
}

.promo-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.promo-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
}

.footer {
    background: var(--primary);
    color: var(--accent);
    padding: 3rem 2rem 1rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: var(--secondary);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-section h4 {
    color: var(--light);
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--secondary);
}

.social-icons {
    display: flex;
    gap: 1rem;
    font-size: 1.5rem;
}

.social-icons i {
    cursor: pointer;
    transition: color 0.3s;
}

.social-icons i:hover {
    color: var(--secondary);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.contact-section {
    padding: 5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h2,
.contact-form h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary);
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--secondary);
    margin-top: 0.3rem;
}

.contact-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.contact-item p {
    color: var(--text);
    line-height: 1.6;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form input,
.contact-form textarea {
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--secondary);
}

.contact-form textarea {
    resize: vertical;
}

.map-section {
    width: 100%;
    margin-bottom: 0;
}

.map-section iframe {
    display: block;
}

.info-section {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    min-height: 50vh;
}

.info-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.info-card {
    text-align: center;
    padding: 2rem;
    background: var(--accent);
    border-radius: 10px;
}

.info-card i {
    font-size: 3rem;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.info-card h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.info-content {
    max-width: 800px;
    margin: 0 auto;
}

.info-content h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.info-content h3 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.info-content p,
.info-content li {
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 1rem;
}

.info-content ul,
.info-content ol {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.faq-item {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e0e0e0;
}

.faq-item:last-child {
    border-bottom: none;
}

.features {
    padding: 4rem 2rem;
    background: var(--accent);
}

.feature-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
}

@media (max-width: 768px) {
    .feature-container {
        grid-template-columns: 1fr;
    }
}

.feature-item {
    text-align: center;
}

.feature-item i {
    font-size: 3rem;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.feature-item h3 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.feature-item p {
    color: var(--text);
}

.brand-statement {
    padding: 6rem 2rem;
    text-align: center;
    background: var(--light);
}

.statement-content h2 {
    font-size: 3.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
    font-weight: 300;
    letter-spacing: 2px;
}

.statement-content p {
    font-size: 1.3rem;
    color: var(--text);
    font-weight: 300;
}

.dual-collection {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 70vh;
    position: relative;
}

.collection-half {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.5s ease;
}

.women-half {
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('images/women/silcjeans.jpg');
    background-size: cover;
    background-position: center;
}

.men-half {
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('https://images.unsplash.com/photo-1507679799987-c73779587ccf?w=800');
    background-size: cover;
    background-position: center;
}

.collection-half:hover {
    flex: 1.2;
}

.collection-overlay {
    text-align: center;
    color: var(--light);
    z-index: 2;
}

.collection-overlay h2 {
    font-size: 4rem;
    font-weight: 300;
    letter-spacing: 8px;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.collection-arrow {
    font-size: 3rem;
    opacity: 0;
    transition: opacity 0.3s;
}

.collection-half:hover .collection-arrow {
    opacity: 1;
}

.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 35, 50, 0.95);
    z-index: 9999;
    display: none;
    align-items: flex-start;
    justify-content: center;
    padding-top: 10rem;
}

.search-overlay.active {
    display: flex;
}

.search-container {
    width: 90%;
    max-width: 800px;
    position: relative;
}

#search-input {
    width: 100%;
    padding: 1.5rem 4rem 1.5rem 2rem;
    font-size: 1.5rem;
    border: none;
    border-bottom: 3px solid var(--secondary);
    background: transparent;
    color: var(--light);
    outline: none;
}

#search-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

#close-search {
    position: absolute;
    right: 1rem;
    top: 1.5rem;
    font-size: 2rem;
    color: var(--light);
    cursor: pointer;
    transition: color 0.3s;
}

#close-search:hover {
    color: var(--secondary);
}

#search-results {
    margin-top: 2rem;
    max-height: 400px;
    overflow-y: auto;
}

.search-result-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    margin-bottom: 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
    text-decoration: none;
    color: var(--light);
}

.search-result-item:hover {
    background: rgba(255, 255, 255, 0.2);
}

.search-result-item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    margin-right: 1rem;
    border-radius: 3px;
}

.search-result-info h4 {
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
}

.search-result-info p {
    color: var(--secondary);
    font-weight: 600;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.modal-overlay.active {
    display: flex;
}

.modal-box {
    background: var(--light);
    padding: 3rem;
    border-radius: 10px;
    text-align: center;
    max-width: 400px;
    animation: modalSlide 0.3s ease;
}

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

.modal-icon {
    font-size: 4rem;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.modal-icon.error {
    color: #e74c3c;
}

.modal-box h3 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.modal-box p {
    font-size: 1.1rem;
    color: var(--text);
    margin-bottom: 2rem;
}

.modal-box .btn {
    width: 100%;
}

.cart-sidebar {
    position: fixed;
    right: -450px;
    top: 0;
    width: 450px;
    height: 100%;
    background: var(--light);
    box-shadow: -5px 0 15px rgba(0,0,0,0.2);
    z-index: 10001;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
}

.cart-sidebar.active {
    right: 0;
}

.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 10000;
    display: none;
}

.cart-overlay.active {
    display: block;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    border-bottom: 2px solid #e0e0e0;
}

.cart-header h2 {
    font-size: 1.5rem;
    color: var(--primary);
}

.cart-header i {
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text);
}

.cart-header i:hover {
    color: var(--secondary);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
}

.empty-cart {
    text-align: center;
    color: var(--text);
    padding: 3rem 0;
}

.cart-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 1rem;
}

.cart-item-image {
    width: 80px;
    height: 80px;
    background-size: cover;
    background-position: center;
    border-radius: 5px;
}

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

.cart-item-details h4 {
    font-size: 1rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.cart-item-details p {
    color: var(--secondary);
    font-weight: 600;
    font-size: 1.1rem;
}

.cart-item-remove {
    cursor: pointer;
    color: #e74c3c;
    font-size: 1.2rem;
}

.cart-item-remove:hover {
    color: #c0392b;
}

.cart-summary {
    padding: 2rem;
    border-top: 2px solid #e0e0e0;
    background: var(--accent);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.summary-row.total {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    padding-top: 1rem;
    border-top: 2px solid #e0e0e0;
    margin-top: 1rem;
}

#checkout-btn {
    width: 100%;
    margin-top: 1rem;
}

.profile-section {
    padding: 5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.profile-container {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
}

.profile-sidebar {
    background: var(--accent);
    padding: 2rem;
    border-radius: 10px;
    height: fit-content;
}

.profile-user {
    text-align: center;
    padding-bottom: 2rem;
    border-bottom: 2px solid #e0e0e0;
    margin-bottom: 2rem;
}

.profile-user i {
    font-size: 5rem;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.profile-user h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.profile-user p {
    color: var(--text);
    font-size: 0.9rem;
}

.profile-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.profile-nav-item {
    padding: 1rem;
    color: var(--text);
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.profile-nav-item:hover {
    background: rgba(26, 35, 50, 0.1);
}

.profile-nav-item.active {
    background: var(--primary);
    color: var(--light);
}

.profile-nav-item.logout {
    color: #e74c3c;
    margin-top: 1rem;
}

.profile-nav-item.logout:hover {
    background: rgba(231, 76, 60, 0.1);
}

.profile-content {
    background: var(--light);
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

.profile-tab {
    display: none;
}

.profile-tab.active {
    display: block;
}

.profile-tab h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 2rem;
}

.orders-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.order-card {
    border: 2px solid #e0e0e0;
    padding: 1.5rem;
    border-radius: 10px;
}

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

.order-number {
    font-weight: 600;
    color: var(--primary);
}

.order-status {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.order-status.pending {
    background: #fff3cd;
    color: #856404;
}

.order-status.delivered {
    background: #d4edda;
    color: #155724;
}

.order-details {
    margin-bottom: 1rem;
}

.order-details p {
    margin-bottom: 0.5rem;
    color: var(--text);
}

.profile-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 600px;
}

.profile-form label {
    font-weight: 600;
    color: var(--primary);
    margin-bottom: -1rem;
}

.profile-form input {
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-size: 1rem;
}

.profile-form input:focus {
    outline: none;
    border-color: var(--secondary);
}

@media (max-width: 768px) {
    .profile-container {
        grid-template-columns: 1fr;
    }
}

.account-section {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.account-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.account-form {
    background: var(--accent);
    padding: 3rem;
    border-radius: 5px;
}

.account-form h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 2rem;
    text-align: center;
}

.account-form form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.account-form input {
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.account-form input:focus {
    outline: none;
    border-color: var(--secondary);
}

.forgot-link {
    text-align: center;
    color: var(--text);
    text-decoration: none;
    font-size: 0.9rem;
}

.forgot-link:hover {
    color: var(--secondary);
}

@media (max-width: 768px) {
    .account-container {
        grid-template-columns: 1fr;
    }
}

.collection-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
    max-width: 1400px;
    margin: 5rem auto;
    gap: 3rem;
    padding: 0 2rem;
}

.collection-showcase.reverse {
    direction: rtl;
}

.collection-showcase.reverse > * {
    direction: ltr;
}

.showcase-left {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
}

.showcase-content {
    max-width: 500px;
}

.showcase-tag {
    display: inline-block;
    background: var(--secondary);
    color: var(--primary);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.showcase-content h2 {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.showcase-content p {
    font-size: 1.2rem;
    color: var(--text);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.showcase-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.showcase-image {
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    min-height: 300px;
    transition: transform 0.3s;
}

.showcase-image:hover {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .collection-showcase {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .showcase-content h2 {
        font-size: 2rem;
    }
    
    .showcase-right {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
        font-size: 2.5rem;
    }
    
    .categories {
        grid-template-columns: 1fr;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
}

.checkout-section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.checkout-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
}

.checkout-form h2 {
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.checkout-form input {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

.order-summary {
    background: var(--accent);
    padding: 2rem;
    border-radius: 8px;
    height: fit-content;
}

.order-summary h2 {
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.checkout-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid #ddd;
}

.summary-totals {
    margin-top: 1.5rem;
}

@media (max-width: 768px) {
    .checkout-container {
        grid-template-columns: 1fr;
    }
}

.payment-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.payment-option {
    cursor: pointer;
}

.payment-option input[type="radio"] {
    display: none;
}

.payment-card {
    border: 2px solid #ddd;
    padding: 1.5rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s;
}

.payment-option input[type="radio"]:checked + .payment-card {
    border-color: var(--secondary);
    background: var(--accent);
}

.payment-card i {
    font-size: 2rem;
    color: var(--primary);
}

.payment-card span {
    font-weight: 600;
    color: var(--primary);
}

#card-details {
    display: block;
}

.size-selector {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    justify-content: center;
}

.size-btn {
    padding: 0.5rem 0.8rem;
    border: 2px solid #ddd;
    background: transparent;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.size-btn:hover {
    border-color: var(--secondary);
}

.size-btn.selected {
    background: var(--secondary);
    border-color: var(--secondary);
    color: var(--primary);
}

.cart-size {
    font-size: 0.85rem;
    color: var(--text);
    margin: 0.2rem 0;
}

#mobile-menu-icon {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

@media (max-width: 768px) {
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--light);
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        display: none;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    #mobile-menu-icon {
        display: block;
    }
}
