/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

html, body {
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
}

body {
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: #333;
}

ul {
    list-style: none;
}

img {
    max-width: 80%;
}

.btn {
    display: inline-block;
    background-color: #333;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #555;
}

/* Header Styles */
header {
    background-color: #f8f8f8;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.top-bar {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 5px 0;
    font-size: 0.9rem;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
}

.nav-links {
    display: flex;
}

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    font-weight: 600;
    position: relative;
}

.nav-links a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: #333;
    bottom: -5px;
    left: 0;
    transition: width 0.3s;
}

.nav-links a:hover:after,
.nav-links a.active:after {
    width: 100%;
}

.cart img {
    width: 25px;
    height: 25px;
}

/* Hero Section */
.hero {
    background-image: url('https://fabricwholesaledirect.com/cdn/shop/articles/A_Brief_History_of_Fabric_and_Textiles_2ddd37b6-f749-4d71-9d37-60c2683a5435.jpg?v=1612474697');
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
    padding: 180px 0;
    position: relative;
    height: 100vh;
    width: 100%;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.hero .btn {
    font-size: 1.1rem;
    padding: 12px 30px;
    background-color: #fff;
    color: #333;
    border: none;
    transition: all 0.3s ease;
}

.hero .btn:hover {
    background-color: #333;
    color: #fff;
}

/* Featured Categories Section */
.featured-categories {
    padding: 80px 5%;
    text-align: center;
}

.featured-categories h2,
.featured-products h2 {
    font-size: 2rem;
    margin-bottom: 50px;
    position: relative;
}

.featured-categories h2:after,
.featured-products h2:after {
    content: '';
    position: absolute;
    width: 100px;
    height: 3px;
    background-color: #333;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.category-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.category {
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    transition: transform 0.3s;
}

.category:hover {
    transform: translateY(-10px);
}

.category h3 {
    margin: 15px 0;
}

.category-img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
    margin: 0 auto 20px auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.featured-categories .price {
    color: #e53935;
    font-weight: 500;
    margin-bottom: 16px;
    font-size: 1.1rem;
}

/* Featured Products Section */
.featured-products {
    padding: 80px 5%;
    background-color: #f9f9f9;
    text-align: center;
}

.product-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.product {
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.product:hover {
    transform: translateY(-10px);
}

.product h3 {
    margin: 15px 0 10px;
}

.price {
    font-weight: 700;
    font-size: 1.1rem;
    color: #e63946;
    margin-bottom: 15px;
}

.product .btn {
    margin-top: 10px;
}

/* Footer Styles */
footer {
    background-color: #333;
    color: #fff;
    padding: 50px 5% 20px;
}

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

.footer-section h3 {
    margin-bottom: 20px;
    position: relative;
}

.footer-section h3:after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background-color: #fff;
    bottom: -10px;
    left: 0;
}

.footer-section ul {
    margin-top: 15px;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #ddd;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #fff;
}

.footer-section form {
    margin-top: 20px;
}

.footer-section input {
    padding: 10px;
    width: 100%;
    margin-bottom: 10px;
    border: none;
    border-radius: 5px;
}

.footer-section button {
    background-color: #e63946;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.footer-section button:hover {
    background-color: #c1121f;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #555;
}

/* Products Page Styles */
.product-banner {
    text-align: center;
    padding: 100px 20px;
    margin-bottom: 50px;
    position: relative;
    background-size: cover;
    background-position: center;
    color: #fff;
}

.about-banner {
    background-image: url('https://media.cntraveler.com/photos/54488a922957bdb202f1f255/master/w_1920%2Cc_limit/clothing-stores-10-corso-como-milan.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #fff;
    text-align: center;
    position: relative;
    height: 80vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.about-banner .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.3),
        rgba(0, 0, 0, 0.7)
    );
    z-index: 1;
}

.about-banner .hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
    animation: fadeInUp 1s ease-out;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.4),
        rgba(0, 0, 0, 0.7)
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
    animation: fadeInUp 1s ease-out;
}

.hero-content h1 {
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 2px;
}

.hero-tagline {
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 15px;
    color: #f8f8f8;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #f0f0f0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

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

/* Responsive styles for hero section */
@media (max-width: 768px) {
    .about-banner {
        height: 60vh;
        min-height: 400px;
        background-attachment: scroll;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-tagline {
        font-size: 1.4rem;
    }

    .hero-content p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .about-banner {
        height: 50vh;
        min-height: 300px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-tagline {
        font-size: 1.2rem;
    }
}

.about-banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.hero-facts, .hero-fact, .fact-number, .fact-text, .hero-button {
    display: none;
}

.contact-banner {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    height: 400px;
    background-image: url('https://images.pexels.com/photos/1056553/pexels-photo-1056553.jpeg');
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-bottom: 50px;
}

.contact-banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
    z-index: 1;
}

.contact-banner h1, 
.contact-banner p {
    position: relative;
    z-index: 2;
}

.contact-banner h1 {
    font-size: 3.5rem;
    margin-bottom: 15px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.contact-banner p {
    font-size: 1.5rem;
    font-weight: 400;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.product-banner h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.product-filter {
    padding: 0 0 40px;
}

.filter-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 20px;
    background-color: #f8f8f8;
    border-radius: 5px;
    margin-bottom: 30px;
}

.filter-section {
    margin-bottom: 20px;
}

.filter-section h3 {
    margin-bottom: 15px;
}

.filter-section label {
    display: block;
    margin-bottom: 10px;
}

.filter-section select {
    padding: 8px;
    width: 200px;
}

.product-section {
    padding: 0 0 60px;
}

.product-section h2 {
    margin-bottom: 30px;
    font-size: 1.8rem;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    padding: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.product-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

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

.product-image {
    position: relative;
    width: 100%;
    padding-top: 100%; /* Creates a 1:1 aspect ratio */
    overflow: hidden;
}

.product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.product-info {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.4;
}

.product-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.product-description {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.5;
    flex-grow: 1;
}

.product-actions {
    display: flex;
    gap: 10px;
    margin-top: auto;
}

.add-to-cart {
    background-color: #333;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    flex-grow: 1;
    text-align: center;
}

.add-to-cart:hover {
    background-color: #555;
}

.wishlist-btn {
    background-color: #f8f8f8;
    border: 1px solid #ddd;
    padding: 10px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wishlist-btn:hover {
    background-color: #eee;
    border-color: #ccc;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
        padding: 15px;
    }
}

@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 15px;
        padding: 10px;
    }

    .product-info {
        padding: 15px;
    }

    .product-title {
        font-size: 1rem;
    }

    .product-price {
        font-size: 1.1rem;
    }

    .product-description {
        font-size: 0.85rem;
    }
}

/* About Page Styles */
.about-content {
    padding: 0 5% 80px;
}

.about-section {
    margin-bottom: 60px;
}

.about-section h2 {
    margin-bottom: 30px;
    font-size: 1.8rem;
    position: relative;
}

.about-section h2:after {
    content: '';
    position: absolute;
    width: 70px;
    height: 3px;
    background-color: #333;
    bottom: -10px;
    left: 0;
}

.about-section p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.values-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.value-item {
    padding: 20px;
    background-color: #f8f8f8;
    border-radius: 5px;
}

.team-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 30px;
    text-align: center;
}

.team-member {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px;
    transition: transform 0.3s;
}

.team-member:hover {
    transform: translateY(-10px);
}

.team-member img {
    width: 200px;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    margin: 0 auto 15px;
    display: block;
    border: 1px solid #eaeaea;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.team-member img:hover {
    transform: scale(1.05);
}

.team-member h3 {
    margin-bottom: 5px;
}

.about-section img {
    max-width: 60%;
    display: block;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.story-container {
    display: flex;
    flex-direction: row;
    gap: 50px;
    align-items: center;
    margin-top: 40px;
    padding: 0 30px;
}

.story-image-container {
    flex: 1;
    max-width: 45%;
    order: 2;
}

.story-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.story-text {
    flex: 2;
    order: 1;
    text-align: left;
    padding-right: 20px;
}

.story-text p {
    margin-bottom: 24px;
    line-height: 1.8;
    font-size: 1.05rem;
    color: #444;
}

.story-text p:first-of-type {
    font-size: 1.2rem;
    font-weight: 500;
    color: #333;
}

.story-text p:last-of-type {
    margin-bottom: 0;
}

#our-story h2 {
    position: relative;
    margin-bottom: 35px;
    font-size: 2.2rem;
    padding-bottom: 15px;
}

#our-story h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 70px;
    height: 3px;
    background-color: #333;
}

@media (max-width: 768px) {
    .story-container {
        flex-direction: column;
        gap: 30px;
        padding: 0 15px;
    }
    
    .story-image-container {
        max-width: 90%;
        margin: 0 auto 20px;
        order: -1;
    }
    
    .story-text {
        order: 2;
        padding-right: 0;
    }
    
    #our-story h2 {
        text-align: center;
        font-size: 1.8rem;
    }
    
    #our-story h2:after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .story-text p:first-of-type {
        font-size: 1.1rem;
    }
}

/* Contact Page Styles */
.contact-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    padding: 0 5% 80px;
}

.info-item {
    margin-bottom: 30px;
}

.info-item h3 {
    margin-bottom: 15px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    display: inline-block;
    padding: 8px 15px;
    background-color: #f5f5f5;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.social-icon:hover {
    background-color: #e5e5e5;
}

.contact-form {
    max-width: 1000px;
    margin: 0 auto;
    padding: 50px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Sky Theme Form Styling */
.sky-theme {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    padding: 40px;
}

.sky-theme h2 {
    color: #3498db;
    text-align: center;
    margin-bottom: 30px;
    font-size: 2rem;
    font-weight: 600;
}

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

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.form-group.half {
    flex: 1;
    margin-bottom: 0;
}

.sky-theme input,
.sky-theme textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: #f8fafc;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05);
}

.sky-theme input:focus,
.sky-theme textarea:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
}

.sky-theme input::placeholder,
.sky-theme textarea::placeholder {
    color: #95a5a6;
}

.sky-theme textarea {
    height: 180px;
    resize: vertical;
    line-height: 1.5;
}

.submit-container {
    text-align: center;
    margin-top: 30px;
}

.sky-theme .submit-btn {
    background-color: #3498db;
    color: white;
    padding: 14px 30px;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: auto;
    min-width: 180px;
    box-shadow: 0 4px 6px rgba(52, 152, 219, 0.2);
}

.sky-theme .submit-btn:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(52, 152, 219, 0.3);
}

/* Form validation styles */
.form-group input:invalid,
.form-group textarea:invalid {
    border-color: #ff6b6b;
}

.form-group input:valid,
.form-group textarea:valid {
    border-color: #51cf66;
}

/* Form group focus styles */
.form-group:focus-within label {
    color: #333;
}

/* Form group hover styles */
.form-group:hover input,
.form-group:hover textarea {
    border-color: #999;
}

/* Form group active styles */
.form-group input:active,
.form-group textarea:active {
    border-color: #333;
}

/* Contact section container */
.contact-section {
    padding: 60px 20px;
    background-color: #f8f8f8;
}

.contact-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #333;
}

.contact-info {
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
}

.contact-info p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .contact-form {
        padding: 30px 20px;
    }

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

    .form-group label {
        font-size: 1rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 12px;
        font-size: 1rem;
    }

    .submit-btn {
        padding: 12px 30px;
        font-size: 1rem;
    }

    .contact-section h2 {
        font-size: 2rem;
        margin-bottom: 30px;
    }
}

.map-section {
    padding: 0 5% 80px;
    text-align: center;
}

.map-section h2 {
    margin-bottom: 30px;
}

.map-container {
    margin-bottom: 30px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.location-details {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f8f8f8;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.location-details p {
    margin-bottom: 10px;
}

.location-details .btn {
    margin-top: 10px;
    display: inline-block;
    background-color: #333;
}

.faq-section {
    padding: 0 5% 80px;
    background-color: #f9f9f9;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 1.8rem;
    position: relative;
}

.faq-section h2:after {
    content: '';
    position: absolute;
    width: 70px;
    height: 3px;
    background-color: #333;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.faq-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 30px;
}

.faq-item {
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
    margin-bottom: 15px;
    color: #e63946;
}

/* Responsive Styles */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
        padding: 20px;
    }
    
    .logo {
        margin-bottom: 20px;
    }
    
    .nav-links {
        margin-bottom: 20px;
    }
    
    .story-container {
        flex-direction: column;
    }
    
    .story-image-container {
        max-width: 80%;
        margin: 0 auto 20px;
        order: -1;
    }
    
    .team-container {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }
    
    .team-member img {
        width: 150px;
        height: 150px;
    }
    
    .hero {
        padding: 100px 20px;
    }
    
    .hero h2 {
        font-size: 2rem;
    }
    
    .about-banner {
        min-height: 70vh;
        padding: 120px 0;
    }
    
    .about-banner h1 {
        font-size: 3rem;
    }
    
    .hero-tagline {
        font-size: 1.5rem;
    }
    
    .about-banner p {
        font-size: 1.1rem;
    }
    
    .contact-banner {
        min-height: 70vh;
        padding: 120px 0;
    }
    
    .contact-banner h1 {
        font-size: 3rem;
    }
    
    .hero-tagline {
        font-size: 1.5rem;
    }
    
    .about-banner p {
        font-size: 1.1rem;
    }
    
    .filter-container {
        flex-direction: column;
    }
    
    .faq-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .nav-links {
        flex-direction: column;
        align-items: center;
    }
    
    .nav-links li {
        margin: 10px 0;
    }
    
    .story-container {
        gap: 20px;
    }
    
    .story-image {
        max-width: 90% !important;
    }
    
    .story-text p {
        font-size: 0.95rem;
        margin-bottom: 15px;
    }
    
    .team-container {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    
    .team-member img {
        width: 120px;
        height: 120px;
    }
    
    .team-member h3 {
        font-size: 1rem;
    }
    
    .team-member p {
        font-size: 0.9rem;
    }
    
    .hero h2 {
        font-size: 1.8rem;
    }
    
    .about-banner {
        min-height: 60vh;
        padding: 100px 0;
    }
    
    .about-banner h1 {
        font-size: 2.5rem;
    }
    
    .hero-tagline {
        font-size: 1.3rem;
    }
    
    .about-banner p {
        font-size: 1rem;
    }
    
    .contact-banner {
        min-height: 60vh;
        padding: 100px 0;
    }
    
    .contact-banner h1 {
        font-size: 2.5rem;
    }
    
    .hero-tagline {
        font-size: 1.3rem;
    }
    
    .about-banner p {
        font-size: 1rem;
    }
}

/* Values Section Styles */
.values-section {
    padding: 60px 0;
    background-color: #f9f9f9;
    margin: 40px 0;
}

.values-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.value-card {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    text-align: center;
}

.value-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background-color: #f5f5f5;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
}

.value-icon img {
    width: 30px;
    height: 30px;
    opacity: 0.7;
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
    font-weight: 600;
}

.value-underline {
    width: 50px;
    height: 3px;
    background-color: #333;
    margin: 0 auto 20px;
}

.value-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

@media (max-width: 992px) {
    .values-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .values-container {
        grid-template-columns: 1fr;
    }
    
    .value-card {
        padding: 25px 20px;
    }
}

/* Mission Section Styles */
.mission-section {
    margin: 60px 0;
}

.mission-container {
    display: flex;
    flex-direction: row;
    gap: 40px;
    margin-top: 30px;
}

.mission-image {
    flex: 1;
}

.mission-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

.mission-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.mission-statement h3 {
    margin-bottom: 20px;
    color: #333;
    font-size: 1.6rem;
}

.mission-statement p {
    line-height: 1.7;
    margin-bottom: 15px;
}

.mission-goals {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.mission-goal {
    padding: 15px;
    background-color: #f9f9f9;
    border-radius: 8px;
    border-left: 4px solid #333;
}

.mission-goal h4 {
    margin-bottom: 10px;
    color: #333;
    font-size: 1.2rem;
}

.mission-goal p {
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Ratings Section */
.ratings-section {
    background-color: #f9f9f9;
    padding: 70px 0;
    margin-top: 50px;
    border-radius: 8px;
}

.ratings-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    padding: 40px;
}

.rating-box {
    background: linear-gradient(145deg, #f8f9fa, #ffffff);
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.03);
    border: 1px solid #f0f0f0;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.rating-header {
    margin-bottom: 25px;
}

.rating-header h3 {
    font-size: 28px;
    margin-bottom: 8px;
    color: #333;
    font-weight: 600;
}

.rating-header p {
    color: #666;
    font-size: 16px;
}

.rating-stars {
    display: flex;
    justify-content: center;
    margin-bottom: 15px;
}

.rating-stars img {
    width: 32px;
    height: 32px;
    margin: 0 3px;
    filter: drop-shadow(0 2px 3px rgba(255, 215, 0, 0.3));
}

.rating-score {
    font-size: 56px;
    font-weight: 700;
    color: #333;
    margin: 15px 0;
    line-height: 1;
    background: linear-gradient(45deg, #333, #666);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.rating-badges {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.rating-badge {
    background-color: #f8f8f8;
    color: #666;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.rating-badge:hover {
    background-color: #333;
    color: #fff;
    transform: translateY(-2px);
}

.rating-total {
    font-size: 14px;
    color: #888;
    margin-top: 10px;
}

.rating-testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.testimonial {
    background-color: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid #f0f0f0;
    position: relative;
    transition: transform 0.3s ease;
}

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

.testimonial-stars {
    display: flex;
    margin-bottom: 15px;
}

.testimonial-stars img {
    width: 18px;
    height: 18px;
    margin-right: 3px;
}

.testimonial p {
    font-size: 16px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.author-avatar {
    width: 50px;
    height: 50px;
    margin-right: 15px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #f9f9f9;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 16px;
    margin-bottom: 3px;
    color: #333;
}

.author-info p {
    font-size: 14px;
    color: #777;
    margin: 0;
    font-style: normal;
}

.rating-cta {
    text-align: center;
    margin-top: 30px;
    grid-column: 1 / -1;
}

.rating-cta .btn {
    background-color: #333;
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.rating-cta .btn:hover {
    background-color: #555;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .ratings-container {
        grid-template-columns: 1fr;
        padding: 20px;
    }
    
    .rating-testimonials {
        grid-template-columns: 1fr;
    }
    
    .rating-score {
        font-size: 48px;
    }
    
    .testimonial {
        margin-bottom: 20px;
    }
}

/* Newsletter Section - Centered */
.newsletter {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 0;
    background: #f9f9f9;
}

.newsletter h2,
.newsletter p {
    text-align: center;
    margin-bottom: 20px;
}

.newsletter form {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 10px;
    max-width: 400px;
    width: 100%;
    margin: 0 auto;
}

.newsletter input[type="email"] {
    flex: 1;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
}

.newsletter button[type="submit"] {
    padding: 12px 24px;
    background: #333;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s;
}

.newsletter button[type="submit"]:hover {
    background: #555;
}

@media (max-width: 600px) {
    .newsletter form {
        flex-direction: column;
        gap: 10px;
        max-width: 100%;
    }
    .newsletter input[type="email"], .newsletter button[type="submit"] {
        width: 100%;
    }
}

/* Product Page Hero Section - Full Width */
.product-hero {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    background-image: url('https://sewguide.com/wp-content/uploads/2023/01/fabric-to-buy-1.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
    padding: 180px 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
    z-index: 1;
}

.product-hero .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    max-width: 800px;
    padding: 0 20px;
}

.product-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 15px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.product-hero p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    font-weight: 400;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
    .product-hero {
        min-height: 400px;
        background-attachment: scroll;
    }
    
    .product-hero h1 {
        font-size: 2.5rem;
    }
    
    .product-hero p {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .product-hero {
        min-height: 350px;
    }
    
    .product-hero h1 {
        font-size: 2rem;
    }
    
    .product-hero p {
        font-size: 1rem;
    }
}

/* Story Section */
.story-section {
    padding: 40px 0;
    background-color: #fff;
    text-align: center;
}

.story-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
}

.story-content h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.story-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #333;
}

.story-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.story-text p {
    text-align: center;
}

.story-content .highlight {
    font-weight: 600;
    color: #333;
}

.story-content .quote {
    font-style: italic;
    font-size: 1.2rem;
    color: #444;
    margin: 30px auto;
    padding: 20px;
    border-left: 4px solid #333;
    background-color: #f9f9f9;
    max-width: 600px;
}

.story-content .mission {
    margin-top: 40px;
    padding: 30px;
    background-color: #f8f8f8;
    border-radius: 8px;
}

.story-content .mission h3 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 15px;
}

.story-content .mission p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .story-section {
        padding: 40px 0;
    }

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

    .story-content p {
        font-size: 1rem;
        line-height: 1.6;
    }

    .story-content .quote {
        font-size: 1.1rem;
        padding: 15px;
    }

    .story-content .mission {
        padding: 20px;
    }

    .story-content .mission h3 {
        font-size: 1.5rem;
    }
}

/* About Preview Section */
.about-preview {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.about-preview-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 0 20px;
}

.about-text {
    padding-right: 40px;
}

.about-text h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 15px;
}

.about-text .tagline {
    font-size: 1.4rem;
    color: #666;
    margin-bottom: 20px;
    font-weight: 500;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
}

.about-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 40px 0;
}

.highlight-item {
    text-align: center;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.highlight-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
}

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

.about-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.about-text .btn {
    display: inline-block;
    padding: 15px 30px;
    background-color: #333;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.about-text .btn:hover {
    background-color: #555;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

@media (max-width: 992px) {
    .about-preview-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-text {
        padding-right: 0;
    }

    .about-image {
        max-height: 400px;
    }
}

@media (max-width: 768px) {
    .about-preview {
        padding: 60px 0;
    }

    .about-text h2 {
        font-size: 2rem;
    }

    .about-text .tagline {
        font-size: 1.2rem;
    }

    .about-highlights {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .highlight-item {
        padding: 15px;
    }
}

/* Center image styling */
.center-image {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 0 auto;
}

.center-image img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.center-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .center-content {
        padding: 0 20px;
    }
}

.centered-img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.centered-img:hover {
    transform: scale(1.02);
}

/* Contact Hero Section */
.contact-hero {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    height: 400px;
    background-image: url('https://images.pexels.com/photos/4471398/pexels-photo-4471398.jpeg');
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-bottom: 50px;
}

.contact-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6));
    z-index: 1;
}

.contact-hero .hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.contact-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 15px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.contact-hero p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    font-weight: 400;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
    .contact-hero {
        height: 350px;
    }
    
    .contact-hero h1 {
        font-size: 2.5rem;
    }
    
    .contact-hero p {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .contact-hero {
        height: 300px;
    }
    
    .contact-hero h1 {
        font-size: 2rem;
    }
    
    .contact-hero p {
        font-size: 1rem;
    }
}

.content-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
}

@media (max-width: 768px) {
    .content-container {
        padding: 30px 15px;
    }
}

@media (max-width: 480px) {
    .content-container {
        padding: 20px 10px;
    }
}

.product img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 10px;
    transition: transform 0.3s ease;
}

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

/* Statement Necklace Image Alignment */
.statement-necklace-img {
    display: block;
    width: 100%;
    max-width: 300px;
    margin: 20px auto;
    text-align: center;
    object-fit: contain;
    border-radius: 8px;
}

.product-text-image-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin: 20px 0;
}

.product-text-image-container img {
    max-width: 40%;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
}

.product-text-image-container .text-content {
    flex: 1;
}

@media (max-width: 768px) {
    .product-text-image-container {
        flex-direction: column;
    }
    
    .product-text-image-container img {
        max-width: 80%;
        margin: 0 auto;
    }
}

.about-hero-image {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    overflow: hidden;
    max-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #222;
}

.about-hero-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
} 