@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Outfit", serif;
}

body {
    color: #333;
}

nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 9%;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}

.logo {
    font-size: 25px;
    color: #333;
    text-decoration: none;
    font-weight: 600;
}

.cart-icon {
    position: relative;
    font-size: 30px;
    display: flex;
    padding: 40px, 40px, 40px, 40px;
}

.cart-icon .cart-item-count {
    position: absolute;
    top: 0;
    right: -6px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 12px;
    line-height: 20px;
    text-align: right;
    display: none;
}

.product-collection {
    width: 100%;
    padding: 30px 10% 5%;

}

.product-collection h2 {
    font-size: 35px;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 600;

}

.product-collection .product-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.product-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    text-align: center;
    transition: box-shadow 0.2s;
    padding: 25px;
}

.product-card:hover {
    box-shadow: 0 4px 16px rgba(227, 95, 38, 0.15);
}

.product-collection .img-box {
    display: flex;
    overflow: hidden;
    cursor: pointer;
}

.product-collection .img-box img {
    width: 100%;
    transition: 0.5s;
}

.product-collection .img-box:hover img {
    transform: scale(1.1);
}

.itemDetails {
    background-color: #039c92;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 10px 24px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    margin: 12px 0;
    transition: background 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(227, 95, 38, 0.08);
    outline: none;
    display: inline-block;
}

.itemDetails:hover {
    background-color: #d14e1f;
    box-shadow: 0 4px 16px rgba(227, 95, 38, 0.18);
}

.AddCart {
    background-color: #039c92;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 10px 24px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    margin: 12px 0;
    transition: background 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(227, 95, 38, 0.08);
    outline: none;
    display: inline-block;
}

.AddCart:hover {
    background-color: #d14e1f;
    box-shadow: 0 4px 16px rgba(227, 95, 38, 0.18);
}

.product-collection .title {
    font-weight: 800;
    text-align: left;
    color: #38a886;
}

.product-collection .description {
    font-weight: 300;
    text-align: left;
}

.product-collection .listed-price {
    font-weight: 300;
    text-align: left;
    text-decoration: line-through;
    color: #999;
}

.product-collection .sale-price {
    font-weight: 600;
    text-align: left;
    color: #e35f26;
}

.product-collection .note {
    font-weight: 300;
    text-align: left;
}

.product-detail {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    padding: 130px 9% 30px;
}

.product-detail .product-img {
    display: flex;
    grid-template-columns: 1fr 4fr;
    gap: 12px;
    height: 550px;
}

.product-detail .product-img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-detail .thumbnail-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.product-detail .thumbnail-list img {
    height: calc(100% / 4 - 9px);
    cursor: pointer;
}

.product-detail .title {
    font-weight: 600;
    line-height: 1;
}

.product-detail .rating i {
    color: #e35f26;
}

.product-detail .price {
    display: block;
    font-size: 25px;
    font-weight: 600;
}

.product-detail :is(.size-selection, .color-selection) {
    margin: 20px 0;
}

.product-detail :is(.size-selection p, .color-selection p) {
    margin-bottom: 10px;
}

.product-detail :is(.size-options, .color-options) {
    display: flex;
    gap: 10px;
}

.product-detail .size-options button {
    width: 45px;
    height: 45px;
    background: #f2f2f2;
    border: 2px solid transparent;
    cursor: pointer;
}

.product-detail .color-options img {
    width: 75px;
    height: 75px;
    border: 2px solid transparent;
    cursor: pointer;
}

.product-detail :is(.size-options .selected, .color-options .selected) {
    border-color: #999;
}

.btn {
    padding: 12px 50px;
    background: #38a886;
    border: none;
    font-size: 16px;
    color: #fff;
    cursor: pointer;
    margin-bottom: 20px;
}

.product-detail .product-policy {
    border-top: 1px solid #ccc;
    padding-top: 10px;
}

.product-detail .product-policy p {
    margin: 3px 0;
}

.checkout-info {
    padding: 20px 0;
    color: #e35f26;
    font-size: 16px;
    font-weight: 700;
}

.cart {
    margin: 120px 120px 120px 120px;
    display: block;
}

.cart .cart-header {
    display: flex;
    padding: 10px 0;
    font-weight: bold;
    border-bottom: 1px solid #ccc;
}

.cart .cart-header span {
    flex: 1;
    text-align: center;
}

.cart .cart-header span:first-child {
    flex: 2;
    text-align: left;
}

.cart .cart-item {
    display: flex;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #ccc;
}

.cart .cart-item .product {
    display: flex;
    align-items: center;
    flex: 2;
}

.cart .cart-item img {
    width: 120px;
    margin-right: 15px;
}

.cart .cart-item .size-color-box {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.cart .cart-item .size {
    padding: 6px 12px;
    background: #f2f2f2;
    font-size: 14px;
}

.cart .cart-item :is(.price, .quantity, .total-price) {
    flex: 1;
    text-align: center;
}

.cart .cart-item .quantity input {
    width: 50px;
    padding: 5px;
    border: 1px solid #ccc;
    outline: none;
    text-align: center;
}

.cart .cart-item .remove {
    background: transparent;
    border: none;
    flex: 1;
}

.cart .cart-item .remove i {
    font-size: 20px;
    color: #333;
    cursor: pointer;
}

.cart .cart-total {
    width: 400px;
    margin: 50px 0 0 auto;
}

.cart .cart-total h3 {
    margin-bottom: 15px;
}

.cart .cart-total p {
    display: flex;
    justify-content: space-between;
}

.cart .cart-total p:not(:last-of-type) {
    border-bottom: 1px solid #ccc;
    padding-bottom: 8px;
    margin-bottom: 8px;
}

.cart .cart-total p:last-of-type {
    font-weight: bold;
}

.cart .cart-total .btn {
    display: block;
    padding: 12px 30px;
    margin: 30px 0 0 auto;
}

@import url("https://fonts.googleapis.com/css2?family=Spartan:wght@100;200;300;400;500;600;700;800;900&display=swap");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Spartan", sans-serif;
}

html {
    scroll-behavior: smooth;
}

/* Global Styles */

h1 {
    font-weight: 700;
    font-size: 46px;
    color: #222;
}

h2 {
    font-weight: 600;
    font-size: 38px;
    color: #222;
}

h3 {
    font-weight: 600;
    font-size: 32px;
    color: #222;
}

h4 {
    font-weight: 600;
    font-size: 26px;
}

h5 {
    font-weight: 500;
    font-size: 20px;
}

h6 {
    font-weight: 500;
    font-size: 16px;
}

p {
    font-size: 14px;
    color: #465b52;
    margin: 15px 0 20px 0;
}

.section-m1 {
    margin: 40px 0;
}

button.normal {
    font: 14px;
    font-weight: 600;
    padding: 15px 15px;
    margin-top: 20px;
    color: #0a0a0a;
    background-color: #04cfc2;
    border-radius: 4px;
    cursor: pointer;
    border: none;
    outline: none;
    transition: 0.02s;
}

body {
    width: 100%;
}

/*Header section*/
#header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 100px;
    background: #e3e6f3;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.6);
    z-index: 999;
    position: sticky;
    top: 0;
    left: 0;
}

#navbar {
    display: flex;
    align-items: center;
    justify-content: center;
}

#navbar li {
    list-style: none;
    padding: 20px;
    position: relative;
}

#navbar li a {
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    transition: 0.3s ease;
}

#navbar li a:hover,
#navbar li a:active {
    color: #088178;
}

#navbar li a:active::after,
#navbar li a:hover::after {
    content: "";
    width: 50%;
    height: 2px;
    background-color: #088178;
    position: absolute;
    bottom: -1px;
    left: 20px;
}

#mobile {
    display: none;
    align-items: center;
}

#close {
    display: none;
}

/*Hero section*/
#hero-home {
    background-image: url("img/banner/acrylic-paints.png");
    height: 50vh;
    width: 100%;
    background-size: cover;
    background-position: top 25% right 0%;
    padding-left: 15%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: center;
    justify-content: center;
}

#hero-shop {
    background-image: url("img/banner/canvas-drawing-stand.png");
    height: 50vh;
    width: 100%;
    background-size: cover;
    background-position: top 50% right 0%;
    padding-left: 15%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: center;
    justify-content: center;
    background-repeat: no-repeat;
}

#hero-about {
    background-image: url("img/about/hero-about.jpg");
    height: 50vh;
    width: 100%;
    background-size: cover;
    background-position: top 25% right 0%;
    padding-left: 15%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: center;
    justify-content: center;
    background-repeat: no-repeat;
}

#hero-blog {
    background-image: url("img/blog/blog.jpeg");
    height: 50vh;
    width: 100%;
    background-size: cover;
    background-position: top 25% right 0%;
    padding-left: 15%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: center;
    justify-content: center;
    background-repeat: no-repeat;
}

#hero-promotion {
    background-image: url("img/hero-mount-everest.jpg");
    height: 50vh;
    width: 100%;
    background-size: cover;
    background-position: top 50% right 0%;
    padding-left: 15%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: center;
    justify-content: center;
    background-repeat: no-repeat;
}

#products-detail-hero {
    background-image: url("img/banner/banner-background.jpg");
    height: 50vh;
    width: 100%;
    background-size: cover;
    background-position: top 25% right 0%;
    padding-left: 15%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: center;
    justify-content: center;
    background-repeat: no-repeat;
}

#hero-home h1 {
    color: #1a1a1a;
    padding: 10px;
}

#hero-home h2 {
    color: #04cfc2;
    padding: 10px;
}

#hero-home h3 {
    color: #f8fc06;
    padding: 10px;
}

#hero-home button {
    background-image: url("img/button.png");
    background-color: transparent;
    border: 0;
    padding: 14px 80px 14px 65px;
    margin-top: 10px;
    background-repeat: no-repeat;
    cursor: pointer;
    font-weight: 600px;
    font-size: 18px;
    font-style: italic;
    color: #fff;
}

#hero-about button {
    background-image: url("img/button.png");
    background-color: transparent;
    border: 0;
    padding: 14px 80px 14px 65px;
    margin-top: 10px;
    background-repeat: no-repeat;
    cursor: pointer;
    font-weight: 600px;
    font-size: 18px;
    font-style: italic;
    color: #fff;
}

#hero-shop button {
    background-image: url("img/button.png");
    background-color: transparent;
    border: 0;
    padding: 14px 80px 14px 65px;
    margin-top: 10px;
    background-repeat: no-repeat;
    cursor: pointer;
    font-weight: 600px;
    font-size: 18px;
    font-style: italic;
    color: #fff;
}

#hero-blog button {
    background-image: url("img/button.png");
    background-color: transparent;
    border: 0;
    padding: 14px 80px 14px 65px;
    margin-top: 10px;
    background-repeat: no-repeat;
    cursor: pointer;
    font-weight: 600px;
    font-size: 18px;
    font-style: italic;
    color: #fff;
}

#hero-promotion button {
    background-image: url("img/button.png");
    background-color: transparent;
    border: 0;
    padding: 14px 80px 14px 65px;
    margin-top: 10px;
    background-repeat: no-repeat;
    cursor: pointer;
    font-weight: 600px;
    font-size: 18px;
    font-style: italic;
    color: #fff;
}

/*Feature section*/

#feature {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

/* #products h2 span {
    color: #fc0505;
} */

#feature .fe-box {
    width: 250px;
    text-align: center;
    padding: 25px 15px;
    border: 1px solid #cce7d0;
    box-shadow: 20px 20px 34px rgba(0, 0, 0, 0.03);
    border-radius: 4px;
    margin: 25px;
}

#feature .fe-box:hover {
    box-shadow: 10px 10px 44px rgba(70, 62, 221, 0.03);
}

#feature .fe-box img {
    width: 100%;
    margin-bottom: 10px;

}

#feature .fe-box h6 {
    padding: 10px;
    line-height: 1px;
    border-radius: 4px;
    color: #1a1a1a;
    background-color: #04cfc2;
    display: inline;
}

#feature .fe-box a {
    text-decoration: none;
}

/*Products section*/

#products {
    text-align: center;
}

#products .pro-desc {
    background-color: #f8f694;
    padding: 10px;
    margin: 10px auto;
    align-content: center;
}

#products h2 {
    text-align: center;
    padding: 10px;
    margin: 10px;
}

/* Gallery Container */
.pro-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin: 50px auto;
    padding: 0 20px;
}

/* Individual Product Card */
.pro {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: box-shadow 0.2s;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px 12px;
}

.pro .desc {
    text-align: center;
    padding: 15px 10px 10px 10px;
    width: 100%;
}

.pro:hover {
    box-shadow: 0 4px 16px rgba(227, 95, 38, 0.15);
}

/* Product Image */
.pro img {
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: 10px;
    margin-bottom: 20px;
    object-fit: cover;
}

.pro .desc h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: #222;
}

.pro .desc p {
    font-size: 0.95rem;
    color: #465b52;
    margin-bottom: 4px;
}

.pro .desc p0,
.pro .desc p1,
.pro .desc p2 {
    display: inline-block;
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.pro .desc p1 {
    text-decoration: line-through;
    color: #999;
    margin-right: 8px;
}

.pro .desc p2 {
    color: #e35f26;
    font-weight: 600;
}

.pro .desc a {
    color: #e35f26;
    font-size: 0.95rem;
    text-decoration: underline;
    margin-bottom: 6px;
    display: inline-block;
}

.pro .desc h6 {
    font-size: 1rem;
    font-weight: 500;
    margin: 10px 0 4px 0;
    color: #222;
}

/* Cart Icon */
.pro .desc .cart {
    font-size: 1.5rem;
    color: #e35f26;
    margin-left: 8px;
    cursor: pointer;
    transition: color 0.2s;
}

.pro .desc .cart:hover {
    color: #d14e1f;
}

/* Gallery Section Title */
.pro-desc {
    max-width: 1200px;
    margin: 32px auto 0 auto;
    padding: 0 20px;
    text-align: center;
}

.pro-desc h2 {
    font-size: 2rem;
    margin-bottom: 8px;
}

.pro-desc h6 {
    font-size: 1.1rem;
    color: #465b52;
    margin-bottom: 16px;
}

#products .pro .cart {
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 40px;
    background-color: #b0e4e0;
    font-weight: 500;
    color: #1a1a1a;
    position: absolute;
    bottom: 25px;
    right: 40px;
    padding: 5px;
}

#banner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-image: url("img/banner/banner-background.jpg");
    width: 100%;
    height: 50vh;
    background-size: cover;
    background-position: center;
}

#banner h4 {
    padding: 10px;
}

#banner h2 {
    padding: 10px;
}

#banner h2 span {
    color: #fa3606;
}

#banner button:hover {
    background-color: #088178;
    color: #fff;
}

#newsletter {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    background-image: url("img/banner/b14.png");
    background-color: #182524;
    margin: 0% 5%;
}

#newsletter .newstext-email {
    display: flex;
    width: 50%;

}

#newsletter h4 {
    font-size: 30px;
    font-weight: 700;
    color: #fff;

}

#newsletter p {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
}

#newsletter p span {
    font-size: 14px;
    font-weight: 600;
    color: #f35309;
}

#newsletter input {
    height: 3.125rem;
    padding: 0 1.0em;
    font-size: 14px;
    width: 100%;
    border: 1px solid transparent;
    border-radius: 4px;
    outline: none;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;

}

#newsletter button {
    background-color: #03746c;
    color: #fff;
    width: 25%;
    white-space: nowarp;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}


/*Widget section*/
#widget {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;

}

#widget .col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 10px;
}

#widget .follow i:hover,
widget a:hover {
    color: #039c92;
}

#widget .col a:hover {
    color: #039c92;
}

#widget .col a {
    font-size: 13px;
    color: #2a2b2a;
    text-decoration: none;
    padding-bottom: 10px;
    font-size: 14px;
}

#widget .col h5 {
    padding-top: 10px;
    padding-bottom: 10px;
}

#widget .col i {
    padding: 10px;
}

#widget .col p {
    font-size: 13px;
    margin: 0 0 8px 0;
}


#pagination {
    text-align: center;

}

#pagination a {
    text-decoration: none;
    text-align: center;
    background-color: #039c92;
    padding: 15px 20px;
    color: #fff;
    font-weight: 600;
}

#pagination i {
    font-size: 18px;
    font-weight: 700;
}

/*faq section*/
.faq-container {
    width: 1080px;
    margin: auto;
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.faq-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

details {
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 1rem;
    background: #fafafa;
}

/*footer section*/
footer {
    width: 100%;
    text-align: center;
    background-color: #e3e6f3;
}


/*shop page section*/


/* singal product 36X24*/

#prodetails {
    display: flex;
    margin: 25px;
}

#prodetails .single-pro-details {
    width: 50%;
}

#prodetails .single-pro-details h5 {
    padding: 10px 0 10px 0;
    font-weight: 700;
}

#prodetails .single-pro-details h4 {
    padding: 10px 0 10px 0;
    color: #fd2205;
}

#prodetails .single-pro-image {
    width: 40%;
    margin-right: 50px;
}

.small-img-group {
    display: flex;
    justify-content: space-between;
}

.small-img-col {
    flex-basis: 24%;
    cursor: pointer;
}

table {
    font-family: arial, sans-serif;
    border-collapse: collapse;
    width: 100%;
}

td {
    border: 1px solid #dddddd;
    text-align: left;
    padding: 8px;
}

th {
    border: 1px solid #dddddd;
    text-align: left;
    padding: 8px;
}

tr:nth-child(even) {
    background-color: #dddddd;
}

/*about page section*/
#about-us {
    max-width: 1080px;
    margin: auto;
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/*media query start here*/

@media (max-width:799px) {
    #navbar {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        position: fixed;
        top: 0;
        right: -300px;
        height: 100vh;
        width: 300px;
        background-color: #e3e6f3;
        box-shadow: 0 40px 60px, rgba(0, 0, 0, 0.01);
        padding: 80px 0 0 10px;
        transition: 0.3s;

    }

    #navbar .active {
        right: 0px;
    }

    #navbar li {
        margin-bottom: 25px;
    }

    #mobile {
        display: flex;
        align-items: center;
    }

    #mobile i {
        color: #1a1a1a;
        font-size: 24px;
        padding-left: 24px;
    }

    #close {
        display: initial;
        position: absolute;
        top: 30px;
        left: 30px;
        color: #222;
        font-size: 24px;
    }

    #lg-bag {
        display: none;
    }

    #hero {

        height: 70vh;
        padding: 0 89px;
        background-position: top 30% right 30%;
    }

    #feature {
        justify-content: center;
    }

    #feature .fe-box {
        margin: 15px 15px;
    }

    #products .pro-container {
        justify-content: center;
    }

    #products .pro {
        margin: 15px;
    }

    #banner {
        min-height: 100%;
        height: 30vh;
    }
}

@media (max-width:477px) {
    #header {
        padding: 10px 30px;
    }

    #hero {
        height: 50vh;
        background-position: 60%;
        padding: 10px;
        align-items: center;
    }

    #hero h1 {
        font-size: 34px;
        padding: 0px;
    }

    #hero h2 {

        font-size: 34px;
        padding: 10px;

    }

    #hero h3 {
        font-size: 14px;
        padding: 10px;
    }

    #products .pro {
        width: 25%;
        min-width: 300px;
    }

    #banner {
        height: 60vh;

    }

    #banner h4 {
        font-size: 10;
    }

    #banner h2 {
        font-size: 20px;
        padding: 0px;

    }

    #newsletter {

        margin: 0% 0%;
    }

    #newsletter h4 {
        font-size: 20px;
    }

    #newsletter button {
        width: 50%;
    }
}

.section-p1 {
    padding: 40px 40px;
}

/* Checkout page styles */

#checkout.section-p1 {
    max-width: 1080px;
    margin: 40px auto;
    background: #fff;
    padding: 2rem 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07);
}

#checkout h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
    font-weight: 700;
    color: #333;
}

#checkout-form .form-group {
    margin-bottom: 1.2rem;
}

#checkout-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #222;
}

#checkout-form input,
#checkout-form select {
    width: 100%;
    padding: 0.7rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
    background: #f9f9f9;
    transition: border-color 0.2s;
}

#checkout-form input:focus,
#checkout-form select:focus {
    border-color: #6c63ff;
    outline: none;
}

#checkout-form button.normal {
    width: 100%;
    padding: 0.9rem;
    background: #6c63ff;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    margin-top: 1.5rem;
    transition: background 0.2s;
}

#checkout-form button.normal:hover {
    background: #5548c8;
}

#checkout-success {
    text-align: center;
    color: #2e7d32;
    background: #e8f5e9;
    border-radius: 8px;
    padding: 2rem 1rem;
    margin-top: 2rem;
}

@media (max-width: 700px) {
    #checkout.section-p1 {
        padding: 1rem;
        max-width: 98vw;
    }
}

/* Contact page styles */

#hero-contact {
    background-image: url("img/contact/contact.png");
    height: 50vh;
    width: 100%;
    background-size: cover;
    background-position: top 50% right 0%;
    padding-left: 15%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: center;
    justify-content: center;
    background-repeat: no-repeat;
}

#contact.section-p1 {
    max-width: 1080px;
    margin: 40px auto;
    background: #fff;
    padding: 2rem 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07);
}

#contact h2 {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 2rem;
    font-weight: 700;
    color: #333;
}

#contact p {
    text-align: center;
    font-size: 1rem;
    color: #465b52;
    margin-bottom: 2rem;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-between;
}

.contact-info {
    flex: 1 1 220px;
    background: #f8f8f8;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.contact-info h4 {
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
    color: #088178;
}

.contact-info p {
    margin-bottom: 1rem;
    font-size: 1rem;
    color: #222;
}

.contact-form {
    flex: 2 1 320px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
    background: #f9f9f9;
    transition: border-color 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #04cfc2;
    outline: none;
}

.contact-form button.normal {
    width: 100%;
    padding: 0.9rem;
    background: #04cfc2;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    margin-top: 0.5rem;
    transition: background 0.2s;
}

.contact-form button.normal:hover {
    background: #039c92;
}

@media (max-width: 900px) {
    .contact-container {
        flex-direction: column;
        gap: 1.5rem;
    }

    #contact.section-p1 {
        padding: 1rem;
        max-width: 98vw;
    }
}

/* Blog page styles */

#blog.section-p1 {
    max-width: 1080px;
    margin: 40px auto;
    background: #fff;
    padding: 2rem 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07);
}

#blog h2 {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 2rem;
    font-weight: 700;
    color: #333;
}

#blog p {
    text-align: center;
    font-size: 1.1rem;
    color: #465b52;
    margin-bottom: 2rem;
}

.blog-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.blog-post {
    background: #f8f8f8;
    border-radius: 8px;
    padding: 1.5rem 1.2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
    transition: box-shadow 0.2s;
}

.blog-post:hover {
    box-shadow: 0 4px 16px rgba(70, 62, 221, 0.08);
}

.blog-post h3 {
    margin-bottom: 0.7rem;
    font-size: 1.3rem;
    color: #088178;
}

.blog-post p {
    font-size: 1rem;
    color: #222;
    margin-bottom: 1rem;
}

.blog-post a {
    color: #04cfc2;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

.blog-post a:hover {
    color: #039c92;
    text-decoration: underline;
}

/* PayPal checkout style */
.pp-ENGU66HEXF3Q4 {
    text-align: center;
    border: none;
    border-radius: 0.25rem;
    min-width: 11.625rem;
    padding: 0 2rem;
    height: 2.625rem;
    font-weight: bold;
    background-color: #FFD140;
    color: #000000;
    font-family: "Helvetica Neue", Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.25rem;
    cursor: pointer;
}


.pp-JVTMAHY27WXLA {
    text-align: center;
    border: none;
    border-radius: 0.25rem;
    min-width: 11.625rem;
    padding: 0 2rem;
    height: 2.625rem;
    font-weight: bold;
    background-color: #FFD140;
    color: #000000;
    font-family: "Helvetica Neue", Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.25rem;
    cursor: pointer;
}


@media (max-width: 900px) {
    #blog.section-p1 {
        padding: 1rem;
        max-width: 98vw;
    }

    .blog-container {
        gap: 1.2rem;
    }
}

/* Add this to your style.css for artist profile section styling */

#artist-profile.section-p1 {
    max-width: 1080px;
    margin: 40px auto;
    background: #fff;
    padding: 2rem 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07);
}

.artist-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
}

.artist-photo {
    flex: 1 1 220px;
    text-align: center;
}

.artist-photo img {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    margin-bottom: 1rem;
}

.artist-details {
    flex: 2 1 400px;
}

.artist-details h2 {
    font-size: 2rem;
    color: #088178;
    margin-bottom: 0.5rem;
}

.artist-details h4 {
    font-size: 1.2rem;
    color: #222;
    margin-bottom: 1rem;
}

.artist-details p {
    font-size: 1rem;
    color: #465b52;
    margin-bottom: 1rem;
}

.artist-info-list {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.artist-info-list li {
    font-size: 1rem;
    color: #222;
    margin-bottom: 0.5rem;
}

@media (max-width: 900px) {
    .artist-container {
        flex-direction: column;
        gap: 1.5rem;
    }

    #artist-profile.section-p1 {
        padding: 1rem;
        max-width: 98vw;
    }
}

.artist-profile p {
    background-color: aqua;
    width: 100%;
    height: auto;
}

.artist-bio.line {
    margin: 1.5rem 0 1rem 0;
    padding: 1rem 1.5rem;
    background: #f8f8f8;
    border-left: 4px solid #088178;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    font-size: 1.1rem;
    color: #222;
}

.artist-bio.line a {
    text-decoration: none;
    color: #088178;
    font-weight: 600;
    transition: color 0.2s;
}

.artist-bio.line a:hover {
    color: #04cfc2;
    text-decoration: underline;
}

.artist-bio.line p {
    margin: 0;
}

/* GALLERY PAGE */

/* main {
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
} */

/* .products,
.cart,
.checkout {
    background: white;
    padding: 40px 120px 40px 120px;
    border-radius: 8px;
    flex: 1 1 30%;
    margin: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
} */

/* .product-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
} */

/* .product img {
    width: 100%;
    border-radius: 5px;
} */

/* button {
    background: #008080;
    color: white;
    padding: 8px 12px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
} */

/* button:hover {
    background: #005f5f;
} */

/* form input {
    display: block;
    width: 100%;
    margin: 10px 0;
    padding: 10px;
    border-radius: 4px;
    border: 1px solid #ccc;
} */