.product-name h2 {
    text-align: center;
    font-size: 1.7rem;
    margin: 0.6rem 0 0.4rem;
}

/* Price + Add to Cart row */
.product-purchase-row {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 1rem 1rem;
}

.product-purchase-row .price {
    font-weight: bold;
    font-size: 1.1rem;
    color: var(--accent-color, #333);
}

/* Quick Add button */
.quick-cart-form {
    margin: 0;
}

.quick-cart-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.quick-cart-btn img {
    width: 32px;
    height: 32px;
    transition: transform 0.2s ease;
}

.quick-cart-btn:hover img {
    transform: scale(1.1);
}

/* Shop All Grid */
.shop-all {
    padding: 2rem 1rem;
    max-width: 1200px;
    margin: auto;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

/* Product Card */
.product-card {
    background: var(--card-bg, #fff);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Remove underline from both links */
.product-image-link,
.product-info-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

/* Ensure image still fills the card width */
.product-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Info section */
.product-info {
    padding: 1rem;
    text-align: center;
}


.price {
    font-weight: bold;
    color: var(--accent-color, #333);
}


/* --- PRODUCT IMAGE SLIDESHOW --- */
.dd-slideshow {
    position: relative;
    max-width: 350px;
    width: 100%;
    margin: auto;
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--card-bg);
    box-shadow: var(--shadow);
	 width: clamp(50px, 50vw, 500px);
	 margin-bottom: 20px;
}

.dd-slides {
    display: flex;
    transition: transform 0.5s ease;
}

.dd-slides img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.dd-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.35);
    border: none;
    color: white;
    font-size: 2rem;
    padding: 6px 12px;
    cursor: pointer;
    border-radius: 8px;
    transition: background 0.2s;
    z-index: 10;
}

.dd-arrow:hover {
    background: rgba(0,0,0,0.55);
}

.dd-prev { left: 10px; }
.dd-next { right: 10px; }

.dd-pause {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0,0,0,0.35);
    border: none;
    color: white;
    font-size: 1.4rem;
    padding: 6px 10px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s;
    z-index: 10;
}

.dd-pause:hover {
    background: rgba(0,0,0,0.55);
}




/* Remove number input arrows (Chrome, Edge, Opera) */
.qty-box::-webkit-inner-spin-button,
.qty-box::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Remove number input arrows (Firefox) */
.qty-box {
    -moz-appearance: textfield;
}


.qty-wrapper {
    height: 40px;
	display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.qty-btn {
    width: 32px;
    height: 32px;
    border: none;
    background: #ddd;
    font-size: 1.4rem;
    font-weight: bold;
    border-radius: 6px;
    cursor: pointer;
    line-height: 1;
}

.qty-btn:hover {
    background: #ccc;
}

.qty-box {
    width: 50px;
    text-align: center;
    font-size: 1.1rem;
    padding: 4px;
    border-radius: 6px;
    border: 1px solid #bbb;
}


.paypal-btn {
    width: 40px;   /* or whatever size you want */
    height: auto;
	display: block;
	cursor: pointer;
}

.buy-row {
    display: flex;
    align-items: center;   /* vertically align everything */
    gap: 10px;             /* spacing between elements */
    justify-content: center; /* optional: centre the whole row */
}

.qty-box {
    width: 60px;      /* make it narrower */
    padding: 4px;     /* optional: reduce padding */
    font-size: 1rem;
    text-align: center;
}


.suggested-links a {
    background: #f0f0f0;
    padding: 4px 8px;
    border-radius: 4px;
    text-decoration: none;
    margin-right: 6px;
    font-weight: 550;
	background: transparent;
}

.suggested-links a:hover {
    background: #808080;
}

img {
    border-radius: 12px;
}

.product-flex {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-top: 1rem;
}

/* Left column */
.product-info {
    flex: 1;
    max-width: 480px;
	text-align: center;
}

/* Right column */
.product-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
	padding: 20px;
}

.product-image img {
    max-width: 100%;
    height: auto;
}


@media (max-width: 700px) {
    .product-flex {
        flex-direction: column;
        text-align: center;
    }

    .product-image {
        order: -1; /* put image above text */
    }
}

/* HEADER LAYOUT */
.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

/* Center brand text block */
.brand-block {
    text-align: center;
    flex: 1;
}

/* NAVIGATION — centered on its own row */
.main-nav {
    width: 100%;
    text-align: center;
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
    display: block;
	}

.main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}


/* Desktop-only nav dividers */
.main-nav li + li::before {
    content: "|";
    margin: 0 0.8rem;
    color: var(--nav-link-color);
    opacity: 0.6;
}


.main-nav a {
    color: var(--nav-link-color);
    font-weight: 400;
    font-size: 0.9rem;
}

/* --- 3-DOT MENU --- */
.hamburger-btn {
    display: none;
    border: none;
    background: none;
    padding: 8px;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 3px;
}

.hamburger-btn span {
    display: block;
    width: 4px;
    height: 4px;
    background: var(--text-color);
    border-radius: 50%;
}




/* MOBILE */
@media (max-width: 680px) {

.hamburger-btn {
        display: flex;
    }
	
.main-nav  li::before {
        content: none;
		display: none;
    }
	
.header-container {
        justify-content: center;
    }

.main-nav.open {
        display: block;
    }
.main-nav {
    display: none;
}
}


.YKS0000{
	margin-left:auto;
	margin-right:auto;
}

:root {
    --blue-accent: #69b3e7;
    --purple-accent: #7566a0;
    --bg-color: #f9f8f6;
    --bg-alt-color: #f4f4f4;
    --text-color: #222222;
    --header-bg: #ffffff;
    --card-bg: #ffffff;
    --hero-bg: rgba(255,255,255,0.95);
    --hero-border: rgba(0, 0, 0, 0.08);
    --border-color: #e5e5e5;
    --nav-link-color: #555555;
    --shadow: 0 14px 35px rgba(0, 0, 0, 0.08);
    --radius: 20px;
}

body.dark-theme {
    --bg-color: #121212;
    --bg-alt-color: #181818;
    --text-color: #f5f5f5;
    --header-bg: #1e1e1e;
    --card-bg: #1e1e1e;
    --hero-bg: rgba(28,28,28,0.92);
    --hero-border: rgba(255,255,255,0.08);
    --border-color: #333333;
    --nav-link-color: #cccccc;
    --shadow: 0 14px 35px rgba(0, 0, 0, 0.35);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    margin: 0;
    min-height: 100vh;
    font-family: 'Lexend', sans-serif;
    background: linear-gradient(180deg, var(--bg-color) 0%, var(--bg-alt-color) 100%);
    color: var(--text-color);
    line-height: 1.6;
    display: flex;
    flex-direction: column;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }

/* --- HEADER --- */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--header-bg);
    border-bottom: 1px solid var(--border-color);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.logo-group {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-left img {
    width: clamp(80px, 10vw, 120px);
    height: auto;
}


.logo-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.brand-main {
    font-size: clamp(1.5rem, 5vw, 3rem);
    font-weight: 800;
    letter-spacing: 2px;
    line-height: 1;
	text-align:center;

}

.brand-sub {
    font-size: clamp(1.2rem, 3vw, 2rem);
    font-weight: 400;
    letter-spacing: 2px;
    color: var(--blue-accent);
    text-transform: uppercase;
	text-align:center;
}

.header-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* --- BUTTONS --- */
.theme-btn, .action-button, .secondary-button {
    border: none;
    border-radius: 999px;
    padding: 0.6rem 1.2rem;
    font-weight: 700;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
	  margin: 0 auto; 
}

.theme-btn, .action-button {
    background: var(--purple-accent);
    color: #fff;
}

.theme-btn:hover { background: #5e5f9a; transform: translateY(-1px); }

.secondary-button {
    background: transparent;
    color: var(--nav-link-color);
    border: 2px solid var(--border-color);
}

/* --- GLOBAL BUTTON GROUPING --- */
.hero-actions, 
.product-actions, 
.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 1.5rem;
}


/* --- CONTENT & PAGES --- */
main {
    width: min(1200px, calc(100% - 40px));
    margin: 40px auto;
    flex: 1 0 auto;
}

.section-heading {
    margin-bottom: 1rem;
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 800;
    word-break: normal;
    overflow-wrap: normal;
    hyphens: none;
    text-align: center; /* Centered for a cleaner look */
}

/* FIXED: Added styling for page subtitles */
.page-subtitle {
    display: block;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    color: var(--nav-link-color);
    font-size: 1.1rem;
}

.hero-section {
    display: grid;
    grid-template-columns: AUTO auto;
    gap: 2rem;
    align-items: center;
}

.hero-copy {
    padding: 2rem;
    background: var(--hero-bg);
    border: 1px solid var(--hero-border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.hero-media img {
    width: clamp(600px, 10vw, 100%);
    height: auto;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
	margin-right: 0;
}


.products-grid, .collections-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.product-card, .collection-card, .page-panel {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: rem;
}

/* --- FORM & FIELD LAYOUTS (Contact & Editor) --- */
.field-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem; /* More space between text and form */
    align-items: start;
}

.form-row {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
}

.form-row label {
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

input[type='text'], select, textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    background: var(--card-bg);
    color: var(--text-color);
    font-family: inherit;
}

textarea {
    min-height: 150px;
}

/* --- FOOTER --- */
.site-footer {
    padding: 30px 20px;
    background: var(--header-bg);
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.footer-links, .footer-socials {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-socials img {
    width: 30px !important;
    height: 30px !important;
    max-width: 30px !important;
    object-fit: contain;
}

.footer-copy {
    color: var(--nav-link-color);
    margin-top: 1.5rem;
    font-size: 0.9rem;
}


    .theme-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.75rem;
    }


    .section-heading {
        text-align: center;
    }

