:root {
    --primary-color: #e3364a;
    --secondary-color: #2c3e50;
    --accent-color: #3498db;
    --text-color: #333;
    --light-gray: #f5f6fa;
    --dark-gray: #333;
    --nav-height: 80px;
    --navy: #0a192f;
}

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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

/* added here the icons=bullet points*/
.icon-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .icon-list li {
    margin-bottom: 1rem;
    font-size: 1rem;
    display: flex;
    align-items: start;
  }
  
  .icon-list .icon {
    margin-right: 12px;
    font-size: 1.3rem;
    line-height: 1;
    flex-shrink: 0;
  }
 /* lenders section */
 .lenders-flow li {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
  }
  
  .lenders-flow li.visible {
    opacity: 1;
    transform: translateY(0);
  }
  
  .lenders-flow .icon {
    margin-right: 12px;
    font-size: 1.4rem;
    flex-shrink: 0;
    animation: pop 0.3s ease;
  }
  
  @keyframes pop {
    0% { transform: scale(0.8); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
  }
  
  
/* Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: #333;
}

.logo img {
    height: 40px;
    width: auto;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #e3364a;
}

/* Hero Section */
#hero {
    height: 100vh;
    background: url('hero_gif.GIF') top/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding-top: 60px;
    background-position: top;
    background-size: cover;
    background-repeat: no-repeat;
    margin-bottom: 5rem;
}

.hero-content {
    max-width: 1200px;
    padding: 2rem;
    text-align: left;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.cta-forms {
    display: flex;
    gap: 3rem;
    justify-content: center;
    margin-top: 3rem;
}

.cta-form {
    background: rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 15px;
    max-width: 550px;
    text-align: left;
    transition: all 0.3s ease;
    transform: translateY(0);
}

.cta-form:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.3);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
}

.cta-form h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.cta-form p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.cta-form input[type="email"] {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    margin-bottom: 1rem;
    border-radius: 5px;
}

.cta-form input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.submit-button {
    width: 100%;
    padding: 0.8rem;
    background-color: white;
    color: var(--primary-color);
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background-color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 768px) {
    .cta-forms {
        flex-direction: column;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .cta-form {
        text-align: center;
    }
}

/* Features Section */
#features {
    padding: 5rem 10%;
    background-color: var(--light-gray);
}

#features h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--secondary-color);
    font-size: 2.5rem;
    font-weight: 700;
}

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

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

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

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

.feature-card p {
    color: var(--text-color);
    line-height: 1.6;
}

/* About Section */
#about {
    display: block;
    min-height: 400px;
    padding-top: 40px;
    background-color: white;
    z-index: 10;
    position: relative;
}


html {
    scroll-padding-top: 100px;
  }

  

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.about-content h2 {
    color: var(--secondary-color);
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.read-more-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    display: inline-block;
    margin-top: 2rem;
}

.read-more-link:hover {
    color: var(--accent-color);
}

/* About Page Styles */
#about-page {
    padding: 5rem 10%;
    background-color: var(--light-gray);
}

.story-section {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    padding: 2rem;
}

.story-content {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    text-align: left;
}

.story-content:hover {
    transform: translateY(-5px);
}

.story-content h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-align: left;
}

.story-content ul {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.story-content ul li {
    margin-bottom: 0.5rem;
}

.story-content p {
    margin-bottom: 1rem;
}

#team {
    padding: 5rem 10%;
    background-color: white;
    text-align: center;
}

.team-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
}

.team-member {
    text-align: center;
    padding: 2rem;
    position: relative;
}

.team-member img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin-bottom: 1rem;
    object-fit: cover;
    transition: all 0.3s ease;
    display: inline-block;
}

.team-member img:hover {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Contact Section */
#contact {
    padding: 5rem 10%;
    background-color: var(--light-gray);
}

.contact-container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.contact-container h2 {
    margin-bottom: 2rem;
    color: var(--secondary-color);
}

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

.contact-container input,
.contact-container textarea {
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.contact-container textarea {
    height: 150px;
    resize: vertical;
}

/* Clothing Item Styles */
.clothing-item {
    padding: 5rem 10%;
    background-color: white;
}

.clothing-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

/* Demo Closet Styles */
#demo-closet {
    padding: 5rem 10%;
    background-color: var(--light-gray);
}

.closet-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.closet-container h2 {
    margin-bottom: 3rem;
    color: var(--secondary-color);
}

.carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    height: 500px; /* Added to contain absolutely positioned items */
}

.carousel-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.carousel-item.active {
    opacity: 1;
}

.carousel-item img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 10px;
}

.carousel-caption {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    padding: 1rem;
    border-radius: 0 0 10px 10px;
}

.carousel-caption h3 {
    color: white;
    margin-bottom: 0.5rem;
}

.carousel-caption p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

.view-item {
    color: white;
    text-decoration: none;
    background: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.view-item:hover {
    background: #d62d3e;
}

.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 1rem;
    cursor: pointer;
    border-radius: 50%;
    z-index: 10;
}

.carousel-control.prev {
    left: 20px;
}

.carousel-control.next {
    right: 20px;
}

.carousel-control:hover {
    background: rgba(0, 0, 0, 0.7);
}

.clothing-images {
    position: relative;
}

.main-image-container {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    background-color: var(--light-gray);
}

.main-image {
    width: 100%;
    height: 100%;
    position: relative;
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 10px;
}

.thumbnail-images {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.thumbnail {
    width: 150px;
    height: 150px;
    border-radius: 8px;
    overflow: hidden;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background-color: #c02d3f;
}

/* Footer */
footer {
    background-color: var(--secondary-color);
    color: white;
    padding: 3rem 10% 1rem;
}

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

.footer-section h3 {
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: white;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--accent-color);
}

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

/* Contact Page */
#contact-page {
    padding: 5rem 10%;
    background-color: var(--navy);
    text-align: center;
}

.contact-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem;
}

.contact-container h2 {
    color: white;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.clothing-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Description Styles */
.description-preview {
    position: relative;
}

.description-preview p {
    color: var(--text-color);
    font-size: 1.1rem;
    line-height: 1.6;
}

.read-more-link,
.read-less-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    margin-top: 0.5rem;
    display: inline-block;
}

.read-more-link:hover,
.read-less-link:hover {
    text-decoration: underline;
}

.description-full {
    margin-top: 1rem;
}

.description-full p {
    color: var(--text-color);
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Thumbnail Styles */
.thumbnail {
    width: 150px;
    height: 150px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
    position: relative;
}

.thumbnail:hover {
    transform: scale(1.05);
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 8px;
}

.thumbnail.active {
    border: 3px solid var(--primary-color);
}

/* Rental Info Styles */
.rental-info {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.rental-info h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.rental-info p {
    color: var(--text-color);
    margin-bottom: 1rem;
}

.rent-button {
    background-color: var(--primary-color);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 1rem;
}

.rent-button:hover {
    background-color: #d62d3e;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    padding: 2rem;
    border-radius: 20px;
    background: white;
    color: var(--primary-color);
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.contact-item:hover {
    transform: translateY(-10px) scale(1.05);
    background: var(--primary-color);
    color: white;
}

.contact-item i {
    font-size: 3rem;
    margin-right: 1.5rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    width: 40px;
    text-align: center;
}

.contact-item:hover i {
    transform: scale(1.2);
}

.contact-content {
    flex: 1;
    min-width: 0; /* Prevent text overflow issues */
}

.contact-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.6rem;
    font-weight: 600;
}

.contact-item:hover h3 {
    color: white;
}

.contact-item p {
    color: var(--text-color);
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    word-break: break-word;
    position: relative;
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.2rem;
    transition: color 0.3s ease;
    word-break: break-word;
}

.contact-item:hover a {
    color: white;
}

.fun-text {
    font-size: 1rem;
    color: var(--primary-color);
    margin-top: 1rem;
    opacity: 0.9;
    word-break: break-word;
}

/* Notification box */
.notification-box {
    position: fixed;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 0.75rem 1.25rem;
    border-radius: 6px;
    font-size: 0.9rem;
    white-space: nowrap;
    z-index: 1000;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.notification-box.active {
    opacity: 1;
}

.contact-item {
    display: flex;
    align-items: center;
    padding: 3rem;
    border-radius: 20px;
    background: white;
    color: var(--primary-color);
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
    position: relative;
    overflow: hidden;
}

.contact-item:hover {
    transform: translateY(-10px);
    background: var(--primary-color);
    color: white;
}

.contact-item i {
    font-size: 3.5rem;
    margin-right: 2rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.contact-item:hover i {
    transform: scale(1.1);
}

.contact-content {
    flex: 1;
}

.contact-item h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    font-weight: 600;
}

.contact-item:hover h3 {
    color: white;
}

.contact-item p {
    color: var(--text-color);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.3rem;
    transition: color 0.3s ease;
}

.contact-item:hover a {
    color: white;
}

.fun-text {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-top: 1.5rem;
    opacity: 0.9;
}

/* Add some decorative elements */
.contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-item:hover::before {
    opacity: 1;
}

/* Closet Styles */
.closet-container {
    position: relative;
    min-height: 100vh;
    background-color: var(--navy);
    display: flex;
}

.closet-sidebar {
    width: 300px;
    background: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
    border-right: 2px solid var(--primary-color);
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    z-index: 100;
}

.closet-content-area {
    flex: 1;
    margin-left: 300px;
    padding: 2rem;
    background: white;
    min-height: calc(100vh - 4rem);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.closet-content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.closet-list {
    width: 100%;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.closet-list-item {
    width: 100%;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.closet-list-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.closet-list-item button {
    width: 100%;
    padding: 1.5rem;
    font-size: 1.25rem;
    color: var(--primary-color);
    border: none;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
}

.closet-list-item button:hover {
    background: var(--primary-color);
    color: white;
}

.closet-date {
    color: #666;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    text-align: left;
}

.closet-nav {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

.closet-nav li {
    width: 100%;
}

.closet-nav button {
    width: 80%;
    padding: 1.5rem;
    font-size: 1.25rem;
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 12px;
    border: none;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.closet-nav button:hover {
    background: var(--primary-color);
    color: white;
    transform: translateX(5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.closet-content {
    flex: 1;
    padding: 2rem;
    background: white;
}

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

.modal-content {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 2rem;
    border-radius: 12px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
}

.close {
    position: absolute;
    right: 1rem;
    top: 1rem;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-color);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.submit-button {
    background: var(--primary-color);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    background: #b72a3a;
    transform: translateY(-2px);
}

.closet-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--primary-color);
}

.closet-actions button {
    background: none;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.closet-actions button:hover {
    background: var(--primary-color);
    color: white;
}

.closet-items {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
}

.closet-item {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.closet-item:hover {
    transform: translateY(-5px);
}

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

.item-details {
    margin-bottom: 1.5rem;
}

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

.item-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 0.5rem;
}

.item-images img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    object-fit: cover;
}

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

.closet-list-item {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.closet-list-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.closet-list-item button {
    width: 100%;
    padding: 1rem;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    border: none;
    background: white;
    color: var(--primary-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.closet-list-item button:hover {
    background: var(--primary-color);
    color: white;
}

.closet-date {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
    text-align: right;
}

.no-closets {
    text-align: center;
    padding: 4rem 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.no-closets h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.no-closets p {
    color: #666;
    font-size: 1.1rem;
}

.closet-list button {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--primary-color);
    background: white;
    color: var(--primary-color);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.closet-list button:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.clothing-container {
    display: flex;
    gap: 3rem;
    padding: 2rem;
    max-width: 1200px;
    margin: 4rem auto 0;
}

.image-section {
    flex: 1;
    max-width: 500px;
}

.image-box {
    background-color: #f5f6fa;
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 1.5rem;
}

.main-image {
    width: 100%;
    max-height: 500px;
    object-fit: contain;
    display: block;
}

.thumbnails {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.thumbnail {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 5px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.thumbnail:hover {
    border-color: #e3364a;
    transform: scale(1.05);
}

.thumbnail:active {
    opacity: 0.8;
}

.info-section {
    flex: 1;
    max-width: 500px;
}

.info {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.description {
    margin-top: 2rem;
    font-size: 1.1rem;
}

.read-more {
    color: #e3364a;
    cursor: pointer;
    text-decoration: underline;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.2rem;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
}
