@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;
    -webkit-text-size-adjust: 100%;
    overflow-x: hidden;
}

body {
    overflow-x: hidden;
}

h1 {
    font-size: 50px;
    line-height: 64px;
    color: #222;
}

h2 {
    font-size: 46px;
    line-height: 54px;
    color: #222;
}

h4 {
    font-size: 20px;
    color: #222;
}

h6 {
    font-weight: 700;
    font-size: 12px;
}

p {
    font-size: 16px;
    color: #465b52;
    margin: 15px 0 20px 0;
}

button.normal {
    font-size: 14px;
    font-weight: 600;
    padding: 15px 30px;
    color: #000;
    background-color: #fff;
    border-radius: 4px;
    cursor: pointer;
    border: none;
    outline: none;
    transition: 0.2s;
}

button.white {
    background: transparent;
    padding: 11px 18px;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    outline: none;
    border: 1px solid #fff;
    cursor: pointer;
    transition: 0.2 ease;
}

.section-p1 {
    padding: 40px 80px;
}

.section-m1 {
    margin: 40px 0;
}

body {
    width: 100%;
}

#header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 80px;
    background: #E3E6F3;
    position: sticky;
    top: 0;
    left: 0;
    z-index: 999;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
}

#navbar {
    display: flex;
    align-items: center;
    justify-content: center;
}

#navbar li {
    list-style: none;
    padding: 0 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: 30%;
    height: 2px;
    background: #088178;
    position: absolute;
    bottom: -4px;
    left: 20px;
}

#navbar li a i {
    font-weight: 500;
    font-size: 20px;
}

#search-bar {
    display: flex;
    align-items: center;
    flex: 1;
    max-width: 560px;
    margin: 0 30px;
    position: relative;
    height: 42px;
    border-radius: 6px;
    overflow: visible;
    border: 2px solid #088178;
    transition: 0.3s;
}

#search-bar:focus-within {
    border-color: #f0a030;
    box-shadow: 0 0 0 3px rgba(240, 160, 48, 0.35);
}

#search-bar select {
    height: 100%;
    padding: 0 10px;
    border: none;
    border-right: 1px solid #ccc;
    background: #e6e6e6;
    color: #555;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    outline: none;
    border-radius: 4px 0 0 4px;
    -webkit-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23555'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 8px center;
    padding-right: 24px;
}

#search-bar input {
    flex: 1;
    height: 100%;
    padding: 0 14px;
    border: none;
    font-size: 15px;
    outline: none;
    background: #fff;
    color: #333;
}

#search-bar input[type="search"] {
    -webkit-appearance: none;
    appearance: none;
}

#search-bar input[type="search"]::-webkit-search-decoration,
#search-bar input[type="search"]::-webkit-search-cancel-button {
    -webkit-appearance: none;
    appearance: none;
    display: none;
}

#mobile-search input[type="search"],
input.mobile-search-input[type="search"] {
    -webkit-appearance: none;
    appearance: none;
}

#mobile-search input[type="search"]::-webkit-search-cancel-button,
input.mobile-search-input[type="search"]::-webkit-search-cancel-button {
    display: none;
}

#search-bar input::placeholder {
    color: #999;
}

#search-bar button {
    height: 100%;
    width: 46px;
    border: none;
    background: #088178;
    color: #fff;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    font-size: 18px;
    transition: 0.3s;
    flex-shrink: 0;
}

#search-bar button:hover {
    background: #065f54;
}

#search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #ddd;
    border-top: none;
    border-radius: 0 0 6px 6px;
    max-height: 400px;
    overflow-y: auto;
    z-index: 1000;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    display: none;
}

#search-results.active {
    display: block;
}

.search-item {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.2s;
    text-decoration: none;
    color: #333;
}

.search-item:hover,
.search-item-active {
    background: #f0f7f6;
}

.search-item img {
    width: 45px;
    height: 45px;
    object-fit: cover;
    border-radius: 4px;
    margin-right: 12px;
}

.search-item-info {
    flex: 1;
}

.search-item-info h6 {
    margin: 0;
    font-size: 14px;
    color: #333;
}

.search-item-info span {
    font-size: 12px;
    color: #088178;
    font-weight: 600;
}

.search-item-info small {
    font-size: 11px;
    color: #999;
    margin-left: 8px;
}

.search-no-results {
    padding: 20px;
    text-align: center;
    color: #999;
    font-size: 14px;
}

#mobile {
    display: none;
    align-items: center;
}

#close {
    display: none;
}

#hero {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 0 80px;
    background-color: #d0e8e4;
    background-image: url("img/banner/b2.jpg");
    width: 100%;
    height: 90vh;
    background-size: cover;
    background-position: center center;
    position: relative;
    overflow: hidden;
}

/* When the theme renderer turns #hero into a multi-slide hero, slides fill the section
   and we drop the section-level padding so each slide controls its own padding. */
#hero.hero-slideshow {
    padding: 0;
}

#hero .hero-slides {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

#hero .hero-slide {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    padding: 0 80px;
    background-color: #d0e8e4;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.7s ease, visibility 0s linear 0.7s;
    z-index: 1;
}

#hero .hero-slide.is-active {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.7s ease, visibility 0s linear 0s;
    z-index: 2;
}

#hero .hero-slide-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

#hero .hero-slide-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
    display: flex;
    flex-direction: column;
}

#hero .hero-slide-content.has-container {
    background: rgba(255, 255, 255, 0.85);
    padding: 32px 48px;
    border-radius: 12px;
}

/* Each slide controls its own flex alignment via inline style set by JS */
#hero .hero-slide[style*="text-align: center"] .hero-slide-content { margin-left: auto; margin-right: auto; align-items: center; }
#hero .hero-slide[style*="text-align: right"] .hero-slide-content { margin-left: auto; align-items: flex-end; }
#hero .hero-slide[style*="text-align: left"] .hero-slide-content { margin-right: auto; align-items: flex-start; }

#hero h4 {
    padding-bottom: 15px;
}

#hero h1 {
    color: #088178;
}

#hero button {
    background-image: url("img/button.png");
    background-color: transparent;
    color: #088178;
    border: 0;
    padding: 14px 80px 14px 65px;
    background-repeat: no-repeat;
    cursor: pointer;
    font-weight: 700;
    font-size: 15px;
}

#hero .hero-cta {
    text-decoration: none;
    display: inline-block;
    margin-top: 14px;
}

/* Slideshow arrows */
#hero .hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 26px;
    height: 26px;
    padding: 0;
    min-width: 0;
    min-height: 0;
    border-radius: 999px;
    border: 0;
    background: rgba(255, 255, 255, 0.85);
    color: #222;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
    transition: background 0.2s ease, transform 0.2s ease;
}

#hero .hero-arrow i {
    font-size: 12px;
}

#hero .hero-arrow:hover {
    background: #ffffff;
    transform: translateY(-50%) scale(1.05);
}

#hero .hero-arrow-prev { left: 18px; }
#hero .hero-arrow-next { right: 18px; }

/* Slideshow dots */
#hero .hero-dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 18px;
    display: flex;
    justify-content: center;
    gap: 10px;
    z-index: 5;
}

#hero .hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 0;
    padding: 0;
    background: rgba(255, 255, 255, 0.55);
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

#hero .hero-dot.is-active {
    background: #ffffff;
    transform: scale(1.25);
}

@media (max-width: 768px) {
    #hero .hero-slide { padding: 0 30px; }
    #hero .hero-arrow { width: 22px; height: 22px; }
    #hero .hero-arrow-prev { left: 10px; }
    #hero .hero-arrow-next { right: 10px; }
    #hero .hero-arrow i { font-size: 10px; }
}

#feature {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

#feature .fe-box {
    width: 180px;
    text-align: center;
    padding: 25px 15px;
    border-radius: 4px;
    border: 1px solid #cce7d0;
    box-shadow: 20px 20px 34px rgba(0, 0, 0, .03);
    transition: 0.3s ease;
    margin: 15px 0;
}

#feature .fe-box:hover {
    box-shadow: 10px 10px 54px rgba(70, 62, 221, 0.1);
}

#feature .fe-box img {
    width: 100%;
    margin-bottom: 10px;
}

#feature .fe-box h6 {
    display: inline-block;
    padding: 9px 8px 6px 8px;
    line-height: 1;
    border-radius: 4px;
    color: #088178;
    background-color: #fddde4;
}

#feature .fe-box:nth-child(2) h6 {
    background-color: #cdebbc;
}

#feature .fe-box:nth-child(3) h6 {
    background-color: #d1e8f2;
}

#feature .fe-box:nth-child(4) h6 {
    background-color: #cdd4f8;
}

#feature .fe-box:nth-child(5) h6 {
    background-color: #f6dbf6;
}

#feature .fe-box:nth-child(6) h6 {
    background-color: #fff2e5;
}

#product1, #product2 {
    text-align: center;
}

#product1 .pro-container, #product2 .pro-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-top: 20px;
}

#product1 .pro, #product2 .pro {
    width: 23%;
    min-width: 250px;
    padding: 10px 12px;
    border: 1px solid #cce7d0;
    border-radius: 25px;
    transition: .2s;
    position: relative;
    cursor: pointer;
    box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.02);
    margin: 15px 0;
}

#product1 .pro:hover, #product2 .pro:hover {
    box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.06);
}

#product1 .pro img, #product2 .pro img {
    width: 100%;
    border-radius: 20px;
}

#product1 .pro .des, #product2 .pro .des {
    text-align: start;
    padding: 10px 0;
}

#product1 .pro .des span, #product2 .pro .des span {
    color: #606063;
    font-size: 12px;
}

#product1 .pro .des h5, #product2 .pro .des h5 {
    padding-top: 7px;
    color: #1a1a1a;
    font-size: 14px;
    transition: 0.2s;
}

#product1 .pro:hover .des h5, #product2 .pro:hover .des h5 {
    color: #088178;
}

#product1 .pro .des i, #product2 .pro .des i {
    color: rgb(240, 177, 18);
    font-size: 12px;
}

#product1 .pro .des h4, #product2 .pro .des h4 {
    padding-top: 7px;
    font-size: 15px;
    font-weight: 700;
    color: #088178;
}

#product1 .pro .cart, #product2 .pro .cart {
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50px;
    background-color: #e8f6ea;
    font-weight: 500;
    color: #088178;
    border: 1px solid #cce7d0;
    transition: 0.2s;
    position: absolute;
    bottom: 20px;
    right: 10px;
}

#product1 .pro .cart:hover, #product2 .pro .cart:hover {
    color: #fff;
    background: #088178;
    font-weight: 400;
}

#banner {
    background-image: url("img/banner/b10.jpg");
    width: 100%;
    height: 40vh;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

#banner h4 {
    color: #fff;
    font-size: 16px;
}

#banner h2 {
    color: #fff;
    font-size: 30px;
    padding: 10px 0;
}

#banner h2 span {
    color: #ef3636;
}

#banner button:hover {
    background: #088178;
    color: #fff;
}

#sm-banner {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

#sm-banner .banner-box {
    background-image: url("img/banner/b17.jpg");
    flex: 1 1 calc(50% - 16px);
    min-width: 280px;
    height: 50vh;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 30px;
}

#sm-banner .banner-box2 {
    background-image: url("img/banner/b18.jpg");
}

#sm-banner h4 {
    color: #fff;
    font-size: 20px;
    font-weight: 300;
}

#sm-banner h2 {
    color: #fff;
    font-size: 28px;
    font-weight: 800;
}

#sm-banner span {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    padding-bottom: 15px;
}

#sm-banner .banner-box:hover button,
#sm-banner .banner-box2:hover button {
    background: #088178;
    border: 1px solid #088178;
    transition: 0.2s ease;
}

#banner3 {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 0 80px;
}

#banner3 .banner-box {
    background-image: url("img/banner/b14.png");
    min-width: 30%;
    height: 30vh;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 20px;
    margin-bottom: 20px;
}

#banner3 .banner-box2 {
    background-image: url("img/banner/b19.jpg");
}

#banner3 .banner-box3 {
    background-image: url("img/banner/b20.jpg");
}

#banner3 h2 {
    color: #fff;
    font-weight: 900;
    font-size: 22px;
}

#banner3 h3 {
    font-size: 15px;
    font-weight: 800;
    color: #ec544e;
}

#newsletter {
    background-image: none;
    background-repeat: no-repeat;
    background-position: 20% 30%;
    background-color: #041e42;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

#newsletter h4 {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
}

#newsletter p {
    font-size: 14px;
    font-weight: 600;
    color: #818ea0;
}

#newsletter p span {
    color: #ffbd27;
}

#newsletter input {
    height: 3.125rem;
    padding: 0 1.25rem;
    font-size: 14px;
    width: 100%;
    border: 1px solid transparent;
    border-radius: 4px;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
    outline: none;
}

#newsletter .form {
    display: flex;
    width: 40%;
}

#newsletter button {
    background-color: #088178;
    color: #fff;
    white-space: nowrap;
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
}

footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

footer .logo {
    margin-bottom: 30px;
    min-height: 50px;
    max-height: 60px;
    width: auto;
    object-fit: contain;
    display: block;
}

footer .follow {
    margin-top: 20px;
}

footer .follow i {
    color: #465b52;
    padding-right: 4px;
    cursor: pointer;
}

footer h4 {
    font-size: 14px;
    padding-bottom: 20px;
}

footer p {
    font-size: 13px;
    margin: 0 0 8px 0;
}

footer .col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 20px;
}

footer a {
    font-size: 13px;
    text-decoration: none;
    margin-bottom: 10px;
    color: #222;
}

footer .install .row img {
    border: 1px solid #088178;
    border-radius: 6px;
}

footer .install img {
    margin: 10px 0 15px 0;
}

footer .copyright {
    width: 100%;
    text-align: center;
}

footer .follow i:hover,
footer a:hover {
    color: #088178;
}


/* Shop Page */

#page-header {
    height: 40vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    background-image: url("img/banner/b10.jpg");
    background-size: cover;
    background-position: center;
    padding: 14px;
}

#page-header h2,
#page-header p {
    color: #fff;
}

#pagination {
    text-align: center;
}

#pagination a {
    text-decoration: none;
    background: #088178;
    padding: 15px 20px;
    border-radius: 4px;
    color: #fff;
    font-weight: 600;
}

#pagination a i {
    font-size: 16px;
    font-weight: 600;
}


/* Single Product */

#prodetails {
    display: grid;
    grid-template-columns: minmax(0, 520px) minmax(0, 1fr) minmax(260px, 280px);
    gap: 24px;
    max-width: 1460px;
    margin: 8px auto 0;
    align-items: start;
}

#prodetails .single-pro-image,
#prodetails .single-pro-details,
#prodetails .single-pro-purchase {
    min-width: 0;
}

#prodetails,
#prodetails button,
#prodetails input,
#prodetails select,
#prodetails textarea,
#prodetails h1,
#prodetails h2,
#prodetails h4,
#prodetails p,
#prodetails span,
#prodetails strong {
    font-family: Arial, Helvetica, sans-serif;
}

.product-gallery-shell {
    display: grid;
    grid-template-columns: 50px minmax(0, 1fr);
    gap: 16px;
    align-items: start;
}

.small-img-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.small-img-col {
    width: 100%;
    aspect-ratio: 1 / 1;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    border: 1px solid #d5d9d9;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
    padding: 4px;
}

.small-img-col:hover,
.small-img-col.active {
    border-color: #007185;
    box-shadow: 0 0 0 1px #007185;
    transform: none;
}

.small-img-col:focus-visible {
    outline: 3px solid rgba(0, 113, 133, 0.18);
    outline-offset: 2px;
}

.small-img-col img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: 8px;
}

.product-main-stage {
    min-height: 520px;
    border: 1px solid #d5d9d9;
    border-radius: 14px;
    background: #fff;
    padding: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none;
}

#MainImg {
    width: 100%;
    max-height: 470px;
    object-fit: contain;
}

#prodetails .single-pro-details {
    padding-top: 0;
}

.product-breadcrumb {
    margin: 0 0 12px;
    font-size: 12px;
    font-weight: 500;
    color: #565959;
}

#prodetails .single-pro-details h1 {
    font-size: 20px;
    line-height: 1.35;
    font-weight: 500;
    color: #0f1111;
    margin-bottom: 10px;
}

.product-rating-row {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    padding-bottom: 14px;
    border-bottom: 1px solid #e7e7e7;
}

.product-rating-value {
    font-size: 14px;
    font-weight: 500;
    color: #0f1111;
}

.product-rating-stars {
    display: inline-flex;
    gap: 2px;
    color: #f0a030;
    font-size: 13px;
}

.product-review-count {
    font-size: 13px;
    color: #007185;
}

.product-price-block {
    padding: 14px 0 18px;
    border-bottom: 1px solid #e7e7e7;
}

.product-price-label {
    display: inline-block;
    margin-bottom: 6px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #565959;
}

.product-price-row {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    flex-wrap: wrap;
}

#prodetails .single-pro-details h2 {
    font-size: 30px;
    line-height: 1.05;
    font-weight: 400;
    color: #b12704;
}

.product-original-price {
    font-size: 14px;
    color: #565959;
    text-decoration: line-through;
}

.product-discount-badge {
    display: inline-flex;
    align-items: center;
    padding: 5px 8px;
    border-radius: 999px;
    background: rgba(177, 39, 4, 0.08);
    color: #b12704;
    font-size: 12px;
    font-weight: 700;
}

.product-tax-note {
    margin: 8px 0 0;
    font-size: 13px;
    line-height: 1.5;
    color: #565959;
}

.product-highlight-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin: 18px 0 20px;
}

.product-highlight-card {
    border: 1px solid #d5d9d9;
    border-radius: 10px;
    padding: 12px;
    background: #fff;
    min-width: 0;
}

.product-highlight-card span {
    display: block;
    margin-bottom: 6px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #565959;
}

.product-highlight-card strong {
    display: block;
    font-size: 14px;
    line-height: 1.45;
    color: #0f1111;
    word-break: break-word;
}

.product-summary h4 {
    padding: 0;
    margin-bottom: 10px;
    font-size: 16px;
}

#product-description {
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
    color: #0f1111;
    white-space: pre-line;
}

.product-trust-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid #e7e7e7;
}

.product-trust-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px;
    border: 1px solid #d5d9d9;
    border-radius: 10px;
    background: #fff;
}

.product-trust-item i {
    font-size: 16px;
    color: #007185;
    margin-top: 2px;
}

.product-trust-item span {
    font-size: 12px;
    line-height: 1.5;
    color: #565959;
}

.single-pro-purchase {
    position: sticky;
    top: 96px;
}

.purchase-card {
    border: 1px solid #d5d9d9;
    border-radius: 12px;
    background: #fff;
    padding: 16px 18px;
    box-shadow: none;
}

.purchase-card-label {
    margin: 0 0 8px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #565959;
}

.purchase-card-price {
    font-size: 28px;
    line-height: 1.1;
    font-weight: 400;
    color: #b12704;
}

.purchase-card-note {
    margin: 8px 0 14px;
    font-size: 13px;
    line-height: 1.5;
    color: #565959;
}

.purchase-stock {
    margin-bottom: 14px;
    font-size: 26px;
    line-height: 1.1;
    font-weight: 400;
}

.purchase-stock.in-stock {
    color: #088178;
}

.purchase-stock.low-stock {
    color: #f0a030;
}

.purchase-stock.out-of-stock {
    color: #b13b3b;
}

.purchase-qty-label {
    display: inline-block;
    margin-bottom: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #0f1111;
}

.purchase-qty-row {
    margin-bottom: 14px;
}

#product-qty {
    width: 92px;
    height: 38px;
    padding: 0 10px;
    border: 1px solid #888c8c;
    border-radius: 8px;
    font-size: 14px;
    color: #0f1111;
    background: #fff;
}

#product-qty:focus {
    outline: none;
    border-color: #007185;
    box-shadow: 0 0 0 3px rgba(0, 113, 133, 0.12);
}

.purchase-primary,
.purchase-secondary,
.purchase-link-btn {
    width: 100%;
    border-radius: 999px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.purchase-primary {
    background: #088178;
    color: #fff;
    margin-bottom: 10px;
    padding: 12px 18px;
    font-size: 14px;
}

.purchase-secondary {
    border: 1px solid #088178;
    background: #fff;
    color: #088178;
    padding: 12px 18px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
}

.purchase-link-btn {
    border: none;
    background: #f3f7f6;
    color: #1a1a1a;
    padding: 12px 18px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 16px;
}

.purchase-primary:hover,
.purchase-secondary:hover,
.purchase-link-btn:hover {
    transform: translateY(-1px);
}

.purchase-primary:hover {
    box-shadow: 0 12px 24px rgba(8, 129, 120, 0.18);
}

.purchase-secondary:hover {
    background: rgba(8, 129, 120, 0.07);
}

.purchase-link-btn:hover {
    background: #e9f1ef;
}

.purchase-primary:disabled,
.purchase-secondary:disabled,
.purchase-link-btn:disabled,
#product-qty:disabled {
    cursor: not-allowed;
    opacity: 0.6;
    transform: none;
    box-shadow: none;
}

.purchase-meta {
    border-top: 1px solid #e7e7e7;
    padding-top: 14px;
    display: grid;
    gap: 10px;
}

.purchase-meta-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.purchase-meta-row span {
    font-size: 12px;
    color: #565959;
}

.purchase-meta-row strong {
    font-size: 13px;
    line-height: 1.45;
    color: #0f1111;
    text-align: right;
}

.purchase-meta-row span {
    font-size: 13px;
    color: #465b52;
}

.purchase-meta-row strong {
    flex: 1;
    text-align: right;
    font-size: 14px;
    color: #1a1a1a;
    word-break: break-word;
}


/* Blog Page */

#blog {
    padding: 150px 150px 0 150px;
}

#page-header.blog-header {
    background-image: none;
}

#blog .blog-box {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    position: relative;
    padding-bottom: 90px;
}

#blog .blog-img {
    width: 50%;
    margin-right: 40px;
}

#blog img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

#blog .blog-details {
    width: 50%;
}

#blog .blog-details a {
    text-decoration: none;
    font-size: 11px;
    color: #000;
    font-weight: 700;
    position: relative;
    transition: 0.3s;
}

#blog .blog-details a::after {
    content: "";
    width: 50px;
    height: 1px;
    background-color: #000;
    top: 4px;
    right: -60px;
    position: absolute;
}

#blog .blog-details a:hover {
    color: #088178;
}

#blog .blog-details a:hover::after {
    background-color: #088178;
}

#blog .blog-box h1 {
    position: absolute;
    font-weight: 700;
    font-size: 70px;
    color: #c9cbce;
    top: -40px;
    left: 0;
    z-index: -9;
}


/* About Page */

#page-header.about-header {
    background-image: none;
}

#about-head {
    display: flex;
    align-items: center;
}

#about-head img {
    width: 50%;
    height: auto;
}

#about-head div {
    padding-left: 40px;
}

#about-app {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    align-items: center;
}

#about-app .video {
    width: 70%;
    height: 100%;
    margin-top: 30px;
}

#about-app .video video {
    width: 100%;
    height: 100%;
    border-radius: 20px;
}


/* Contact Page */

#contact-details {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#contact-details .details {
    width: 40%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

#contact-details .details span,
#form-details span {
    font-size: 12px;
}

#contact-details .details h2,
#form-details h2 {
    font-size: 26px;
    line-height: 35px;
    padding: 20px 0;
}

#contact-details .details h3 {
    font-size: 16px;
    padding-bottom: 15px;
}

#contact-details .details li {
    list-style: none;
    display: flex;
    padding: 10px 0;
}

#contact-details .details li i {
    font-size: 14px;
    padding-right: 22px;
}

#contact-details .details li p {
    margin: 0;
    font-size: 14px;
}

#contact-details .map {
    width: 55%;
    height: 400px;
}

#contact-details .map iframe {
    width: 100%;
    height: 100%;
}

#form-details {
    display: flex;
    justify-content: space-between;
    margin: 30px;
    padding: 80px;
    border: 1px solid #e1e1e1;
}

#form-details form {
    width: 65%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

#form-details form input,
#form-details form textarea {
    width: 100%;
    padding: 12px 15px;
    outline: none;
    margin-bottom: 20px;
    border: 1px solid #e1e1e1;
}

#form-details form button {
    background-color: #088178;
    color: #fff;
}

#form-details .people div {
    display: flex;
    align-items: flex-start;
    padding-bottom: 25px;
}

#form-details .people img {
    width: 65px;
    height: 65px;
    object-fit: cover;
    margin-right: 15px;
}

#form-details .people p {
    margin: 0;
    font-size: 13px;
    line-height: 25px;
}

#form-details .people p span {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #000;
}


/* Cart Page */

#cart {
    overflow-x: auto;
}

#cart table {
    width: 100%;
    border-collapse: collapse;
    table-layout: auto;
    white-space: nowrap;
}

#cart table img {
    width: 70px;
}

#cart table td:nth-child(1) {
    width: 80px;
    text-align: center;
}

#cart table td:nth-child(2) {
    width: 100px;
    text-align: center;
}

#cart table td:nth-child(3) {
    white-space: normal;
    word-break: break-word;
    text-align: left;
    padding: 10px 12px;
    font-size: 13px;
    line-height: 1.4;
    min-width: 180px;
}

#cart table td:nth-child(4),
#cart table td:nth-child(5),
#cart table td:nth-child(6) {
    width: 150px;
    text-align: center;
}

#cart table td:nth-child(5) input {
    width: 70px;
    padding: 10px 5px 10px 15px;
}

#cart table thead {
    border: 1px solid #e2e9e1;
    border-left: none;
    border-right: none;
}

#cart table thead td {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    padding: 18px 0;
}

#cart table tbody tr td {
    padding-top: 15px;
}

#cart table tbody td {
    font-size: 13px;
}

#cart-add {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

#cuopon {
    width: 50%;
    margin-bottom: 30px;
}

#cuopon h3,
#subtotal h3 {
    padding-bottom: 15px;
}

#cuopon input {
    padding: 10px 20px;
    outline: none;
    width: 60%;
    margin-right: 10px;
    border: 1px solid #e2e9e1;
}

#cuopon button,
#subtotal button {
    background: #088178;
    color: #fff;
    padding: 12px 20px;
}

#subtotal {
    width: 50%;
    margin-bottom: 30px;
    border: 1px solid #e2e9e1;
    padding: 30px;
}

#subtotal table {
    border-collapse: collapse;
    width: 100%;
    margin-bottom: 20px;
}

#subtotal table td {
    width: 50%;
    border: 1px solid #e2e9e1;
    padding: 10px;
    font-size: 13px;
}


/* Start Media Query */

@media (max-width:1200px) {
    #prodetails {
        grid-template-columns: minmax(0, 1fr) minmax(300px, 0.82fr);
        gap: 22px;
    }
    #prodetails .single-pro-image {
        grid-row: 1 / span 2;
    }
    #prodetails .single-pro-details {
        grid-column: 2;
    }
    #prodetails .single-pro-purchase {
        grid-column: 2;
        position: static;
    }
    .product-main-stage {
        min-height: 500px;
    }
    .product-highlight-cards,
    .product-trust-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width:799px) {
    #cart {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    #cart table {
        min-width: 600px;
    }
    .section-p1 {
        padding: 40px;
    }
    #navbar {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        position: fixed;
        top: 0px;
        right: -300px;
        width: 300px;
        height: 100vh;
        background: #E3E6F3;
        box-shadow: 0 40px 60px rgba(0, 0, 0, 0.1);
        transition: right 0.3s;
        padding: 80px 0 0 10px;
        visibility: hidden;
        pointer-events: none;
        z-index: 1000;
    }
    #navbar li {
        margin-bottom: 25px;
    }
    #navbar.active {
        right: 0;
        visibility: visible;
        pointer-events: auto;
    }
    #mobile {
        display: flex;
    }
    #mobile i {
        color: #1a1a1a;
        font-size: 24px;
        padding-left: 20px;
    }
    #bar {
        display: initial;
    }
    #close {
        display: initial;
        font-size: 24px;
        position: absolute;
        top: 30px;
        left: 30px;
        color: #222;
    }
    #lg-bag,
    #lg-search,
    #lg-user {
        display: none;
    }
    #search-bar {
        display: none;
    }
    #mobile-search {
        display: none !important;
    }
    #hero {
        padding: 0 30px;
        height: 90vh;
        background-position: center right -80px;
        background-size: auto 100%;
    }
    #feature {
        justify-content: center;
    }
    #feature .fe-box {
        margin: 15px;
    }
    #product1 .pro-container, #product2 .pro-container {
        justify-content: center;
    }
    #product1 .pro, #product2 .pro {
        width: 45%;
        min-width: 160px;
        margin: 8px;
    }
    #banner {
        height: 20vh;
    }
    #sm-banner .banner-box {
        min-width: 100%;
        height: 30vh;
        padding: 30px;
    }
    #banner3 {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        padding: 0 40px;
    }
    #banner3 .banner-box {
        width: 28%;
    }
    #newsletter .form {
        width: 70%;
    }
    /* Contact Page */
    #form-details {
        padding: 40px;
    }
    #form-details form {
        width: 50%;
    }
    /* Single Product */
    #prodetails {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    #prodetails .single-pro-image,
    #prodetails .single-pro-details,
    #prodetails .single-pro-purchase {
        grid-column: auto;
        grid-row: auto;
    }
    .product-gallery-shell {
        grid-template-columns: 64px minmax(0, 1fr);
    }
    .product-main-stage {
        min-height: 420px;
    }
    #prodetails .single-pro-details h1 {
        font-size: 24px;
    }
    .single-pro-purchase {
        position: static;
    }
}

@media (max-width:477px) {
    .section-p1 {
        padding: 20px;
    }
    h1 {
        font-size: 38px;
    }
    h2 {
        font-size: 32px;
    }
    #header {
        padding: 10px 20px;
    }
    #hero {
        padding: 0 20px;
        height: 90vh;
        background-position: center right -100px;
        background-size: auto 100%;
    }
    #feature {
        justify-content: space-between;
    }
    #feature .fe-box {
        width: 155px;
        margin: 0 0 15px 0;
    }
    #product1 .pro, #product2 .pro {
        width: 47%;
        min-width: 140px;
        margin: 5px;
    }
    #product1 .pro-container, #product2 .pro-container {
        justify-content: space-between;
        padding: 10px 0;
    }
    #banner {
        height: 40vh;
    }
    #sm-banner .banner-box {
        height: 40vh;
    }
    #sm-banner .banner-box {
        margin-top: 20px;
    }
    #banner3 {
        padding: 0 20px;
    }
    #banner3 .banner-box {
        width: 100%;
    }
    #newsletter {
        padding: 40px 20px;
    }
    #newsletter .form {
        width: 100%;
    }
    footer .copyright {
        text-align: start;
    }
    /* Blog Page */
    #blog {
        padding: 100px 20px 20px 20px;
    }
    #blog .blog-box {
        flex-direction: column;
        align-items: flex-start;
    }
    #blog .blog-img {
        width: 100%;
        margin-right: 0px;
        margin-bottom: 30px;
    }
    #blog .blog-details {
        width: 100%;
    }
    #about-app .video {
        width: 100%;
    }
    /* About Page */
    #about-head {
        flex-direction: column;
    }
    #about-head img {
        width: 100%;
    }
    #about-head div {
        padding-top: 20px;
        padding-left: 0px;
    }
    /* Contact Page */
    #contact-details .details {
        width: 100%;
        padding-bottom: 30px;
    }
    #contact-details .map {
        width: 100%;
    }
    #contact-details {
        flex-wrap: wrap;
    }
    #form-details {
        margin: 10px;
        padding: 30px 10px;
        flex-wrap: wrap;
    }
    #form-details form {
        width: 100%;
        padding-bottom: 30px;
    }
    /* Cart Page */
    #cart-add {
        flex-direction: column;
    }
    #cuopon,
    #subtotal {
        width: 100%;
    }
    #subtotal {
        padding: 20px;
    }
    /* Single Product */
    #prodetails {
        gap: 20px;
    }
    .product-gallery-shell {
        grid-template-columns: 1fr;
    }
    .small-img-group {
        flex-direction: row;
        flex-wrap: wrap;
    }
    .small-img-col {
        width: calc(25% - 9px);
    }
    .product-main-stage {
        min-height: 320px;
        padding: 18px;
    }
    #prodetails .single-pro-details {
        padding-top: 0;
    }
    #prodetails .single-pro-details h1 {
        font-size: 22px;
    }
    #prodetails .single-pro-details h2,
    .purchase-card-price {
        font-size: 26px;
    }
    .product-highlight-cards,
    .product-trust-strip {
        grid-template-columns: 1fr;
    }
    .purchase-card {
        padding: 20px;
    }
    .purchase-stock {
        font-size: 24px;
    }
}

/* Cart Badge */
.cart-badge {
    position: absolute;
    top: -8px;
    right: -10px;
    background: #088178;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    line-height: 1;
}
#lg-bag a,
#mobile a {
    position: relative;
}
.cart-badge.show {
    display: flex;
}

/* Header login/account link */
#lg-user {
    list-style: none;
    padding: 0 10px;
}

#lg-user a {
    text-decoration: none;
    color: #1a1a1a;
    font-size: 20px;
    transition: 0.3s ease;
}

#lg-user a:hover {
    color: #088178;
}

#mobile-user {
    margin-left: 12px;
}

#mobile-user a {
    font-size: 20px;
    color: #1a1a1a;
    transition: 0.3s ease;
}

#mobile-user a:hover {
    color: #088178;
}

/* ========== Collections Grid (Home) ========== */
.collections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
    padding: 10px 0;
}

.collection-card {
    text-decoration: none;
    color: inherit;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.25s, box-shadow 0.25s;
    background: #fff;
}

.collection-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.collection-card-img {
    height: 180px;
    overflow: hidden;
    background: #f5f5f5;
}

.collection-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

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

.collection-card-info {
    padding: 14px 16px;
}

.collection-card-info h3 {
    margin: 0 0 4px;
    font-size: 16px;
    font-weight: 600;
}

.collection-card-info p {
    margin: 0;
    font-size: 13px;
    color: #777;
}

/* ========== Collections Bar (Shop/Collection) ========== */
.shop-collections-bar {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    padding: 10px 0;
}

.shop-coll-chip {
    display: inline-block;
    padding: 8px 20px;
    border: 1px solid #ddd;
    border-radius: 30px;
    text-decoration: none;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s;
    background: #fff;
}

.shop-coll-chip:hover {
    border-color: #088178;
    color: #088178;
}

.shop-coll-chip.active {
    background: #088178;
    color: #fff;
    border-color: #088178;
}

/* ========== Page select button active state ========== */
.page-select-btn.active {
    background: #088178;
    color: #fff;
    border-color: #088178;
}
