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

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

/* Header styles */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #2C3E50;
    padding: 20px;
}

header .logo img {
    height: 50px;
}

header nav ul {
    list-style: none;
    display: flex;
}

header nav ul li {
    margin: 0 20px;
}

header nav ul li a {
    color: #fff;
    font-weight: 500;
}

header .cart img {
    width: 30px;
    margin-right: 10px;
}

/* Hero Section */
.hero {
    background: url('hero-image.jpg') no-repeat center center;
    background-size: cover;
    color: #fff;
    text-align: center;
    padding: 100px 20px;
}

.hero .cta-button {
    background-color: #f39c12;
    padding: 10px 30px;
    font-size: 16px;
    color: #fff;
    border-radius: 5px;
    margin-top: 20px;
}

/* Featured Products Section */
.featured-products {
    padding: 50px 20px;
    background-color: #f4f4f4;
    text-align: center;
}

.featured-products h2 {
    font-size: 32px;
    margin-bottom: 30px;
}

.product-grid {
    display: flex;
    justify-content: space-around;
    gap: 20px;
}

.product-card {
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    text-align: center;
    border-radius: 8px;
    width: 200px;
}

.product-card img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
}

.product-card h3 {
    margin: 10px 0;
}

.product-card .view-details {
    display: inline-block;
    margin-top: 10px;
    font-size: 14px;
    color: #f39c12;
}

.product-card .view-details:hover {
    text-decoration: underline;
}

/* Special Offers Section */
.special-offers {
    padding: 50px 20px;
    background-color: #34495e;
    color: #fff;
    text-align: center;
}

.offer-banner {
    background-color: #e67e22;
    padding: 30px;
    border-radius: 8px;
    display: inline-block;
}

.offer-banner .cta-button {
    background-color: #fff;
    color: #e67e22;
}

/* Footer Section */
footer {
    background-color: #2C3E50;
    color: #fff;
    padding: 20px;
    text-align: center;
}

footer .social-media {
    list-style: none;
    padding: 0;
}

footer .social-media li {
    display: inline;
    margin: 0 10px;
}

footer .social-media li a {
    color: #fff;
    font-size: 16px;
}

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

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

/* Header styles */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #2C3E50;
    padding: 20px;
}

header .logo img {
    height: 50px;
}

header nav ul {
    list-style: none;
    display: flex;
}

header nav ul li {
    margin: 0 20px;
}

header nav ul li a {
    color: #fff;
    font-weight: 500;
}

header .cart img {
    width: 30px;
    margin-right: 10px;
}

/* Shop Header Section */
.shop-header {
    background: url('hero-image.jpg') no-repeat center center;
    background-size: cover;
    color: #fff;
    text-align: center;
    padding: 100px 20px;
}

.shop-header h1 {
    font-size: 36px;
}

.shop-header p {
    font-size: 18px;
}

/* Filter and Sort Section */
.filter-sort {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    background-color: #e9e9e9;
}

.filter, .sort {
    font-size: 16px;
}

.filter select, .sort select {
    padding: 5px;
    font-size: 14px;
}

/* Product Grid Section */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    padding: 40px 20px;
}

.product-card {
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    text-align: center;
    border-radius: 8px;
    transition: transform 0.2s ease;
}

.product-card img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.product-card h3 {
    margin: 10px 0;
}

.product-card .view-details {
    display: inline-block;
    margin-top: 10px;
    font-size: 14px;
    color: #f39c12;
}

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

/* Pagination Section */
.pagination {
    text-align: center;
    padding: 20px;
}

.pagination ul {
    list-style: none;
    display: inline-flex;
    gap: 10px;
}

.pagination ul li a {
    font-size: 16px;
    color: #333;
}

.pagination ul li a:hover {
    color: #f39c12;
}

/* Footer Section */
footer {
    background-color: #2C3E50;
    color: #fff;
    padding: 20px;
    text-align: center;
}

footer .social-media {
    list-style: none;
    padding: 0;
}

footer .social-media li {
    display: inline;
    margin: 0 10px;
}

footer .social-media li a {
    color: #fff;
    font-size: 16px;
}

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

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

/* Header styles */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #2C3E50;
    padding: 20px;
}

header .logo img {
    height: 50px;
}

header nav ul {
    list-style: none;
    display: flex;
}

header nav ul li {
    margin: 0 20px;
}

header nav ul li a {
    color: #fff;
    font-weight: 500;
}

header .cart img {
    width: 30px;
    margin-right: 10px;
}

/* Product Detail Section */
.product-detail {
    display: flex;
    justify-content: space-between;
    padding: 50px 20px;
    background-color: #f9f9f9;
}

.product-images {
    width: 45%;
}

.product-images .main-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.product-thumbnails {
    display: flex;
    margin-top: 20px;
    gap: 10px;
}

.product-thumbnails img {
    width: 60px;
    height: auto;
    cursor: pointer;
    border-radius: 5px;
    transition: transform 0.2s ease;
}

.product-thumbnails img:hover {
    transform: scale(1.1);
}

.product-info {
    width: 50%;
}

.product-info h1 {
    font-size: 32px;
    margin-bottom: 10px;
}

.product-info .price {
    font-size: 24px;
    color: #f39c12;
    margin-bottom: 20px;
}

.product-info .description {
    font-size: 16px;
    margin-bottom: 20px;
}

.product-info .specifications {
    list-style: none;
    padding: 0;
}

.product-info .specifications li {
    font-size: 16px;
    margin-bottom: 8px;
}

.cta button {
    padding: 10px 20px;
    font-size: 16px;
    background-color: #f39c12;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-right: 10px;
}

.cta button:hover {
    background-color: #e67e22;
}

.social-share ul {
    list-style: none;
    display: flex;
    gap: 20px;
    padding: 0;
}

.social-share ul li a {
    font-size: 16px;
    color: #333;
}

/* Related Products Section */
.related-products {
    padding: 50px 20px;
    background-color: #f4f4f4;
}

.related-products h2 {
    font-size: 32px;
    margin-bottom: 30px;
    text-align: center;
}

.product-grid {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.product-card {
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    text-align: center;
    border-radius: 8px;
    width: 220px;
}

.product-card img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.product-card h3 {
    margin: 10px 0;
}

.product-card .view-details {
    display: inline-block;
    margin-top: 10px;
    font-size: 14px;
    color: #f39c12;
}

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

/* Footer Section */
footer {
    background-color: #2C3E50;
    color: #fff;
    padding: 20px;
    text-align: center;
}

footer .social-media {
    list-style: none;
    padding: 0;
}

footer .social-media li {
    display: inline;
    margin: 0 10px;
}

footer .social-media li a {
    color: #fff;
    font-size: 16px;
}

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

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

/* Header styles */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #2C3E50;
    padding: 20px;
}

header .logo img {
    height: 50px;
}

header nav ul {
    list-style: none;
    display: flex;
}

header nav ul li {
    margin: 0 20px;
}

header nav ul li a {
    color: #fff;
    font-weight: 500;
}

header .cart img {
    width: 30px;
    margin-right: 10px;
}

/* Product Detail Section */
.product-detail {
    display: flex;
    justify-content: space-between;
    padding: 50px 20px;
    background-color: #f9f9f9;
}

.product-images {
    width: 45%;
}

.product-images .main-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.product-thumbnails {
    display: flex;
    margin-top: 20px;
    gap: 10px;
}

.product-thumbnails img {
    width: 60px;
    height: auto;
    cursor: pointer;
    border-radius: 5px;
    transition: transform 0.2s ease;
}

.product-thumbnails img:hover {
    transform: scale(1.1);
}

.product-info {
    width: 50%;
}

.product-info h1 {
    font-size: 32px;
    margin-bottom: 10px;
}

.product-info .price {
    font-size: 24px;
    color: #f39c12;
    margin-bottom: 20px;
}

.product-info .description {
    font-size: 16px;
    margin-bottom: 20px;
}

.product-info .specifications {
    list-style: none;
    padding: 0;
}

.product-info .specifications li {
    font-size: 16px;
    margin-bottom: 8px;
}

.cta button {
    padding: 10px 20px;
    font-size: 16px;
    background-color: #f39c12;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-right: 10px;
}

.cta button:hover {
    background-color: #e67e22;
}

.social-share ul {
    list-style: none;
    display: flex;
    gap: 

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

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

/* Header styles */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #2C3E50;
    padding: 20px;
}

header .logo img {
    height: 50px;
}

header nav ul {
    list-style: none;
    display: flex;
}

header nav ul li {
    margin: 0 20px;
}

header nav ul li a {
    color: #fff;
    font-weight: 500;
}

header .cart img {
    width: 30px;
    margin-right: 10px;
}

/* Product Detail Section */
.product-detail {
    display: flex;
    justify-content: space-between;
    padding: 50px 20px;
    background-color: #f9f9f9;
}

.product-images {
    width: 45%;
}

.product-images .main-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.product-thumbnails {
    display: flex;
    margin-top: 20px;
    gap: 10px;
}

.product-thumbnails img {
    width: 60px;
    height: auto;
    cursor: pointer;
    border-radius: 5px;
    transition: transform 0.2s ease;
}

.product-thumbnails img:hover {
    transform: scale(1.1);
}

.product-info {
    width: 50%;
}

.product-info h1 {
    font-size: 32px;
    margin-bottom: 10px;
}

.product-info .price {
    font-size: 24px;
    color: #f39c12;
    margin-bottom: 20px;
}

.product-info .description {
    font-size: 16px;
    margin-bottom: 20px;
}

.product-info .specifications {
    list-style: none;
    padding: 0;
}

.product-info .specifications li {
    font-size: 16px;
    margin-bottom: 8px;
}

.cta button {
    padding: 10px 20px;
    font-size: 16px;
    background-color: #f39c12;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-right: 10px;
}

.cta button:hover {
    background-color: #e67e22;
}

.social-share


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

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

/* Header styles */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #2C3E50;
    padding: 20px;
}

header .logo img {
    height: 50px;
}

header nav ul {
    list-style: none;
    display: flex;
}

header nav ul li {
    margin: 0 20px;
}

header nav ul li a {
    color: #fff;
    font-weight: 500;
}

header .cart img {
    width: 30px;
    margin-right: 10px;
}

/* Product Detail Section */
.product-detail {
    display: flex;
    justify-content: space-between;
    padding: 50px 20px;
    background-color: #f9f9f9;
}

.product-images {
    width: 45%;
}

.product-images .main-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.product-thumbnails {
    display: flex;
    margin-top: 20px;
    gap: 10px;
}

.product-thumbnails img {
    width: 60px;
    height: auto;
    cursor: pointer;
    border-radius: 5px;
    transition: transform 0.2s ease;
}

.product-thumbnails img:hover {
    transform: scale(1.1);
}

.product-info {
    width: 50%;
}

.product-info h1 {
    font-size: 32px;
    margin-bottom: 10px;
}

.product-info .price {
    font-size: 24px;
    color: #f39c12;
    margin-bottom: 20px;
}

.product-info .description {
    font-size: 16px;
    margin-bottom: 20px;
}

.product-info .specifications {
    list-style: none;
    padding: 0;
}

.product-info .specifications li {
    font-size: 16px;
    margin-bottom: 8px;
}

.cta button {
    padding: 10px 20px;
    font-size: 16px;
    background-color: #f39c12;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-right: 10px;
}

.cta button:hover {
    background-color: #e67e22;
}

.social-share ul {
    list-style: none;
    display: flex;
    gap: 20px;
    padding: 0;
}

.social-share ul li a {
    font-size: 16px;
    color: #333;
}

/* Related Products Section */
.related-products {
    padding: 50px 20px;
    background-color: #f4f4f4;
}

.related-products h2 {
    font-size: 32px;
    margin-bottom: 30px;
    text-align: center;
}

.product-grid {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.product-card {
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    text-align: center;
    border-radius: 8px;
    width: 220px;
}

.product-card img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.product-card h3 {
    margin: 10px 0;
}

.product-card .view-details {
    display: inline-block;
    margin-top: 10px;
    font-size: 14px;
    color: #f39c12;
}

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

/* Footer Section */
footer {
    background-color: #2C3E50;
    color: #fff;
    padding: 20px;
    text-align: center;
}

footer .social-media {
    list-style: none;
    padding: 0;
}

footer .social-media li {
    display: inline;
    margin: 0 10px;
}

footer .social-media li a {
    color: #fff;
    font-size: 16px;
}


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

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

/* Header styles */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #2C3E50;
    padding: 20px;
}

header .logo img {
    height: 50px;
}

header nav ul {
    list-style: none;
    display: flex;
}

header nav ul li {
    margin: 0 20px;
}

header nav ul li a {
    color: #fff;
    font-weight: 500;
}

header .cart img {
    width: 30px;
    margin-right: 10px;
}

/* About Us Section */
.about-us {
    padding: 50px 20px;
    background-color: #f4f4f4;
    text-align: center;
}

.about-us h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

.about-us p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Our Team Section */
.our-team {
    padding: 50px 20px;
    background-color: #fff;
    text-align: center;
}

.our-team h2 {
    font-size: 32px;
    margin-bottom: 30px;
}

.team-members {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.team-member {
    width: 250px;
    text-align: center;
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.team-member img {
    width: 100%;
    height: auto;
    border-radius: 50%;
}

.team-member h3 {
    font-size: 22px;
    margin-top: 15px;
}

.team-member p {
    font-size: 16px;
    color: #555;
}

/* Footer Section */
footer {
    background-color: #2C3E50;
    color: #fff;
    padding: 20px;
    text-align: center;
}

footer .social-media {
    list-style: none;
    padding: 0;
}

footer .social-media li {
    display: inline;
    margin: 0 10px;
}

footer .social-media li a {
    color: #fff;
    font-size: 16px;
}

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

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

/* Header styles */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #2C3E50;
    padding: 20px;
}

header .logo img {
    height: 50px;
}

header nav ul {
    list-style: none;
    display: flex;
}

header nav ul li {
    margin: 0 20px;
}

header nav ul li a {
    color: #fff;
    font-weight: 500;
}

header .cart img {
    width: 30px;
    margin-right: 10px;
}

/* Contact Us Section */
.contact-us {
    padding: 50px 20px;
    background-color: #f4f4f4;
    text-align: center;
}

.contact-us h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

.contact-us p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 40px;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.contact-form label {
    font-size: 16px;
    margin-bottom: 8px;
    display: block;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact-form button {
    padding: 10px 20px;
    font-size: 16px;
    background-color: #f39c12;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
}

.contact-form button:hover {
    background-color: #e67e22;
}

/* Store Information Section */
.store-info {
    margin-top: 50px;
    text-align: center;
}

.store-info h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.store-info p {
    font-size: 18px;
    margin-bottom: 10px;
}

.store-info address {
    font-style: normal;
    margin-bottom: 20px;
}

.store-info a {
    color: #f39c12;
    text-decoration: none;
}

.store-info a:hover {
    text-decoration: underline;
}

/* Footer Section */
footer {
    background-color: #2C3E50;
    color: #fff;
    padding: 20px;
    text-align: center;
}

footer .social-media {
    list-style: none;
    padding: 0;
}

footer .social-media li {
    display: inline;
    margin: 0 10px;
}

footer .social-media li a {
    color: #fff;
    font-size: 16px;
}
/* Global styles */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

/* Header styles */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #2C3E50;
    padding: 20px;
}

header .logo img {
    height: 50px;
}

header nav ul {
    list-style: none;
    display: flex;
}

header nav ul li {
    margin: 0 20px;
}

header nav ul li a {
    color: #fff;
    font-weight: 500;
}

header .cart img {
    width: 30px;
    margin-right: 10px;
}

/* Thank You Section */
.thank-you {
    padding: 50px 20px;
    background-color: #f4f4f4;
    text-align: center;
}

.thank-you h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

.thank-you p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 40px;
}

.order-summary {
    text-align: left;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    margin: 0 auto;
    max-width: 600px;
}

.order-summary h3 {
    margin-top: 20px;
}

.continue-shopping {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #f39c12;
    color: #fff;
    border-radius: 5px;
    font-size: 16px;
    text-align: center;
}

.continue-shopping:hover {
    background-color: #e67e22;
}

/* Footer Section */
footer {
    background-color: #2C3E50;
    color: #fff;
    padding: 20px;
    text-align: center;
}

footer .social-media {
    list-style: none;
    padding: 0;
}

footer .social-media li {
    display: inline;
    margin: 0 10px;
}

footer .social-media li a {
    color: #fff;
    font-size: 16px;
}

