@import url(variable.css);

/* ══════════════════════════════════════
   BASE
   ══════════════════════════════════════ */

*, *::before, *::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    color: var(--accent-color-fourth);
    font-family: var(--font-primary);
    font-size: var(--font-body-lg);
    background: #fafaf7;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
}

a {
    transition: color 0.3s ease, background 0.3s ease, border-color 0.3s ease, opacity 0.3s ease;
}

.container {
    @media (min-width: 1200px) {
        max-width: 1100px;
    }
}

/* ══════════════════════════════════════
   TOP BAR
   ══════════════════════════════════════ */

.topbarbgwrap {
    background: var(--accent-color-fourth);
    padding: 10px 0;
    position: relative;
}

.contactinfo {
    font-family: var(--font-secondary);
    font-size: var(--font-body-sm);
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

.contactinfo a {
    color: var(--text-muted);
    text-decoration: none;
}

.contactinfo a:hover {
    color: var(--color-primary);
}

.contactinfo .gold-divider {
    width: 1px;
    height: 14px;
    background: rgba(212, 175, 55, 0.3);
    display: inline-block;
    vertical-align: middle;
    margin: 0 8px;
}

.toprightcol a,
.toprightcol p {
    color: var(--text-muted);
    margin-bottom: 0;
    font-family: var(--font-secondary);
    font-size: var(--font-body-sm);
    font-weight: 400;
    text-decoration: unset;
    letter-spacing: 0.5px;
}

.toprightcol a:hover {
    color: var(--color-primary);
}

/* ══════════════════════════════════════
   BUTTONS
   ══════════════════════════════════════ */

.btnstyleone {
    border: 1px solid rgba(212, 175, 55, 0.4);
    padding: 6px 20px;
    font-family: var(--font-secondary);
    font-weight: 500;
    font-size: var(--font-body-sm);
    background: transparent;
    text-decoration: none;
    color: var(--color-primary);
    border-radius: var(--bordert-radius-xs);
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btnstyleone:hover {
    background: var(--color-primary);
    color: var(--accent-color-fourth);
    border-color: var(--color-primary);
}

.btn-gold {
    display: inline-block;
    background: var(--gold-gradient);
    color: var(--accent-color-fourth);
    font-family: var(--font-secondary);
    font-weight: 600;
    font-size: var(--font-body-lg);
    padding: 16px 44px;
    text-decoration: none;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: none;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 4px 24px rgba(212, 175, 55, 0.3);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(212, 175, 55, 0.45);
    color: var(--accent-color-fourth);
}

.btn-gold-outline {
    display: inline-block;
    background: transparent;
    color: var(--color-primary);
    font-family: var(--font-secondary);
    font-weight: 600;
    font-size: var(--font-body-lg);
    padding: 16px 44px;
    text-decoration: none;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: 2px solid var(--color-primary);
    transition: all 0.4s ease;
}

.btn-gold-outline:hover {
    background: var(--color-primary);
    color: var(--accent-color-fourth);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(212, 175, 55, 0.3);
}

/* btnstyletwo kept for PHP compatibility */
.btnstyletwo {
    display: inline-block !important;
    background: var(--gold-gradient);
    color: var(--accent-color-fourth);
    font-family: var(--font-secondary);
    font-weight: 600;
    font-size: var(--font-body-lg);
    padding: 18px 48px !important;
    text-decoration: none;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: none;
    border-radius: 0;
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 4px 24px rgba(212, 175, 55, 0.3);
}

.btnstyletwo:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(212, 175, 55, 0.45);
    color: var(--accent-color-fourth);
}

.btnstylethree {
    display: block;
    width: 280px;
    margin: 0 auto;
    background: var(--gold-gradient);
    color: var(--accent-color-fourth);
    font-family: var(--font-secondary);
    font-weight: 600;
    font-size: var(--font-body-lg);
    padding: 18px 44px;
    text-decoration: none;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-align: center;
    border: none;
    transition: all 0.4s ease;
    box-shadow: 0 4px 24px rgba(212, 175, 55, 0.3);
}

.btnstylethree:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(212, 175, 55, 0.45);
    color: var(--accent-color-fourth);
}

/* ══════════════════════════════════════
   NAVIGATION
   ══════════════════════════════════════ */

.navbar-area {
    background: #fff;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    position: relative;
}

.navbar {
    padding: 0 !important;
}

.navbar-nav {
    align-items: center;
}

.navbar-wrapper .dropdown {
    display: flex;
    flex-direction: row;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
    align-items: center;
}

.navbar-wrapper .dropdown a.active,
.nav-item a.active {
    color: var(--color-primary);
    border-bottom: 2px solid var(--color-primary);
    border-radius: 0 !important;
}

.navbar-wrapper .dropdown a,
.nav-item a {
    font-size: 15px;
    font-weight: 500;
    line-height: 24px;
    color: var(--accent-color-fourth);
    padding: 20px 14px !important;
    text-decoration: none;
    display: block;
    font-family: var(--font-secondary);
    letter-spacing: 0.5px;
    border: none;
    border-bottom: 2px solid transparent;
    border-radius: 0;
    transition: color 0.3s ease, border-color 0.3s ease;
}

.navbar-wrapper .dropdown a:hover,
.nav-item a:hover {
    color: var(--color-primary);
    border-bottom-color: var(--color-primary);
}

.navbar-wrapper .dropdown li {
    position: relative;
}

.navbar-wrapper .dropdown li > ul {
    list-style: none;
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    margin-top: 0;
    margin-left: 0;
    background-color: #fff;
    padding-left: 0;
    border-top: 2px solid var(--color-primary);
    min-width: 220px;
    z-index: 100;
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.navbar-wrapper .dropdown li > ul a {
    white-space: nowrap;
    display: block;
    padding: 10px 18px !important;
    border-bottom: 1px solid rgba(0,0,0,0.04);
}

.navbar-wrapper .dropdown li:hover > ul {
    display: block;
}

.cart-countwrap {
    position: relative;
}

.cart-count {
    position: absolute;
    top: 10px;
    right: -4px;
    line-height: 18px;
    height: 18px;
    width: 18px;
    font-size: 10px;
    font-weight: 700;
    border-radius: 50%;
    background-color: var(--color-primary);
    color: var(--accent-color-fourth);
    text-align: center;
    font-family: var(--font-secondary);
}

/* ══════════════════════════════════════
   HERO / WELCOME SECTION
   ══════════════════════════════════════ */

.welcomewrap {
    width: 100%;
    position: relative;
    padding: 140px 0 120px;
    overflow: hidden;
}

.welcomewrap::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 50% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.welcomewrap::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
}

.headerleft {
    position: relative;
    z-index: 2;
}

.headerleft h1 {
    font-family: var(--heading-font);
    font-weight: 700;
    font-size: var(--h2);
    color: var(--accent-color-first);
    line-height: 1.1;
    margin-bottom: 0;
}

.headerleft h1 .gold-text {
    background: var(--gold-text-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.headerleft h6 {
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: var(--font-body-xl);
    color: var(--text-light);
    line-height: 30px;
    margin: 28px 0 40px;
}

.headerright {
    position: relative;
    text-align: center;
    z-index: 2;
}

.headerright img {
    border-radius: var(--bordert-radius-md);
}

.hero-gold-line {
    width: 60px;
    height: 3px;
    background: var(--gold-gradient);
    margin-bottom: 24px;
}

/* ── Hero Decoration Animations (removed — using background image) ── */

/* ══════════════════════════════════════
   CONTENT / FEATURES SECTION
   ══════════════════════════════════════ */

.contentwrap {
    position: relative;
    padding: 100px 0 60px;
    background: #fff;
}

.imagecolumn {
    position: relative;
}

.imagecolumn img {
    border-radius: var(--bordert-radius-md);
}

.imgtextcolright {
    position: relative;
    padding-top: 20px;
}

.liststyle ul {
    margin: 0;
    padding: 0;
}

.liststyle li {
    list-style: none;
    display: flex;
    align-items: flex-start;
    margin-bottom: 32px;
}

.tickmark-col {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    color: var(--accent-color-first);
}

.tickmark-col svg {
    width: 24px;
    height: 24px;
}

.bgcolor1 {
    background: var(--color-primary);
}

.bgcolor2 {
    background: var(--accent-color-fourth);
}

.bgcolor3 {
    background: var(--color-primary-dark);
}

.textcol {
    margin-left: 20px;
}

.textcol h5 {
    font-family: var(--font-secondary);
    font-weight: 600;
    color: var(--accent-color-fourth);
    font-size: var(--h5);
    margin-bottom: 6px;
}

.textcol p {
    font-family: var(--font-primary);
    font-weight: 400;
    color: rgba(41, 36, 37, 0.65);
    line-height: 26px;
    font-size: var(--font-body-lg);
    margin-bottom: 0;
}

/* ══════════════════════════════════════
   SECTION TITLES
   ══════════════════════════════════════ */

.section-title {
    font-family: var(--heading-font);
    font-weight: 600;
    font-size: var(--h3);
    color: var(--accent-color-fourth);
    text-align: center;
    margin-bottom: 16px;
}

.section-subtitle {
    font-family: var(--font-primary);
    font-size: var(--font-body-xl);
    color: rgba(41, 36, 37, 0.55);
    text-align: center;
    max-width: 520px;
    margin: 0 auto 48px;
    line-height: 28px;
}

.section-label {
    font-family: var(--font-secondary);
    font-size: var(--font-body-sm);
    font-weight: 600;
    color: var(--color-primary);
    letter-spacing: 3px;
    text-transform: uppercase;
    text-align: center;
    display: block;
    margin-bottom: 12px;
}

.gold-line-center {
    width: 50px;
    height: 2px;
    background: var(--gold-gradient);
    margin: 0 auto 16px;
}

/* ══════════════════════════════════════
   BROWSE CATEGORIES
   ══════════════════════════════════════ */

.prodcatwrap {
    padding: 80px 0 60px;
    background: #fafaf7;
}

.prodcatwrap .container {
    max-width: 1100px;
}

.prodcatwrap .prod-info {
    padding: 12px;
    border-radius: var(--bordert-radius-md);
    border: 1px solid rgba(0, 0, 0, 0.06);
    margin-bottom: 30px;
    text-decoration: none;
    display: block;
    background: #fff;
    transition: all 0.35s ease;
}

.prodcatwrap .prod-info:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
    border-color: rgba(212, 175, 55, 0.3);
}

.prodcatwrap .prod-info img {
    height: 164px;
    display: block;
    margin: 0 auto;
    transition: transform 0.4s ease;
}

.prodcatwrap .prod-info:hover img {
    transform: scale(0.95);
}

.prodcatwrap .prod-info h6 {
    font-size: var(--font-body-lg);
    color: var(--accent-color-fourth);
    font-weight: 600;
    font-family: var(--font-secondary);
    line-height: 24px;
    text-align: center;
    padding: 16px 0 8px;
    margin-bottom: 0;
    height: 72px;
}

/* ══════════════════════════════════════
   LET US HELP YOU / SERVICES
   ══════════════════════════════════════ */

.serviceswrap {
    padding: 100px 0;
    background: var(--dark-gradient);
    position: relative;
    overflow: hidden;
}

.serviceswrap::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(212, 175, 55, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.serviceswrap::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
}

.serviceswrap .container {
    max-width: 960px;
    position: relative;
    z-index: 2;
}

.serviceswrap h2 {
    font-family: var(--heading-font);
    font-size: var(--h3);
    font-weight: 600;
    color: var(--accent-color-first);
    text-align: center;
    margin-bottom: 16px;
}

.serviceswrap p {
    color: var(--text-light);
    text-align: center;
}

#prs-services {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    list-style: none;
    padding: 0;
    margin-top: 40px;
}

#prs-services li {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(212, 175, 55, 0.15);
    color: var(--text-light);
    font-family: var(--font-secondary);
    font-size: var(--font-body-md);
    font-weight: 500;
    padding: 14px 28px;
    transition: all 0.35s ease;
    cursor: default;
    backdrop-filter: blur(4px);
}

#prs-services li:hover {
    background: var(--color-primary);
    color: var(--accent-color-fourth);
    border-color: var(--color-primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.25);
}

/* Keep old class names for PHP compatibility */
.bluepatternbg {
    padding: 0;
    background: none;
}

.letushelpyouwrap {
    position: relative;
    text-align: center;
}

.letushelpyouwrap .container {
    max-width: 960px;
    width: 96%;
    margin: 0 auto;
}

.listbtnstyle div {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 0;
    border-bottom: none;
}

.listbtnstyle a {
    font-size: var(--font-body-md);
    font-family: var(--font-secondary);
    color: var(--text-light);
    line-height: 26px;
}

/* ══════════════════════════════════════
   FEATURED PRODUCTS
   ══════════════════════════════════════ */

.featuredproductswrap {
    padding: 80px 0;
    background: #fff;
    position: relative;
}

.featuredproductswrap .container {
    max-width: 1100px;
    width: 96%;
    margin: 0 auto;
}

.featuredproductswrap .section-title {
    color: var(--accent-color-fourth);
}

.featuredproductswrap .fea-prod-info {
    transition: all 0.35s ease;
}

.featuredproductswrap .fea-prod-info:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
}

.featuredproductswrap .fea-prod-info img {
    transition: transform 0.4s ease;
}

.featuredproductswrap .fea-prod-info:hover img {
    transform: scale(0.96);
}

/* ══════════════════════════════════════
   ADDITIONAL CONTENT
   ══════════════════════════════════════ */

.contentwrap-extra {
    background: #fafaf7;
    padding: 60px 0;
}

.contentwrap-extra .tw-prose {
    max-width: 800px;
    margin: 0 auto;
}

/* ══════════════════════════════════════
   SEO CONTENT
   ══════════════════════════════════════ */

.seo-content-wrap {
    padding: 80px 0;
    background: #fff;
}

.seo-content p {
    font-family: var(--font-primary);
    font-size: var(--font-body-lg);
    line-height: 28px;
    color: rgba(41, 36, 37, 0.7);
}

.seo-heading {
    font-family: var(--heading-font);
    font-size: var(--h5);
    font-weight: 600;
    color: var(--accent-color-fourth);
    margin-bottom: 12px;
}

/* ══════════════════════════════════════
   HOURS OF OPERATION
   ══════════════════════════════════════ */

.operationhourswrap {
    padding: 80px 0;
    background: #fafaf7;
}

.operationhourscol {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: var(--bordert-radius-md);
    padding: 48px;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.operationhourscol::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold-gradient);
}

.operationhourscol h2 {
    font-family: var(--heading-font);
    font-size: 36px;
    color: var(--accent-color-fourth);
    margin-bottom: 28px;
    text-align: center;
}

.operationhourscol ul {
    padding: 0;
    max-width: 500px;
    margin: 0 auto;
}

.operationhourscol ul li {
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-top: 1px solid rgba(0,0,0,0.06);
    font-size: var(--font-body-xl);
    line-height: 28px;
    font-weight: 500;
    font-family: var(--font-secondary);
    color: var(--accent-color-fourth);
}

.operationhourscol ul li .daycol {
    font-weight: 600;
}

.operationhourscol ul li .timecol {
    color: rgba(41, 36, 37, 0.55);
}

span.line {
    width: 22px;
    display: inline-block;
    background: var(--accent-color-fourth);
    height: 1.5px;
    vertical-align: middle;
    margin: 0 8px;
}

/* ══════════════════════════════════════
   TESTIMONIALS
   ══════════════════════════════════════ */

.testimonialwrap {
    padding: 80px 0;
    background: var(--dark-gradient);
    position: relative;
    overflow: hidden;
}

.testimonialwrap::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
}

/* keep old class for PHP compat */
.testinobualwrap {
    padding: 80px 0;
    background: var(--dark-gradient);
    border-radius: 0;
    max-width: 100%;
    width: 100%;
    margin: 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.testinobualwrap::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
}

.testinobualwrap .carousel-item img {
    margin-bottom: 20px;
    filter: brightness(0) saturate(100%) invert(76%) sepia(50%) saturate(500%) hue-rotate(10deg);
    max-height: 24px;
}

.testinobualwrap .carousel-caption {
    position: inherit;
    right: auto;
    bottom: auto;
    left: auto;
    padding-top: 0;
    padding-bottom: 0;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.carousel-caption .line {
    display: block;
    margin: 24px auto;
    width: 50px;
    height: 2px;
    background: var(--gold-gradient);
}

.carousel-caption h5 {
    font-size: var(--h5);
    font-family: var(--font-primary);
    font-weight: 400;
    font-style: italic;
    line-height: 36px;
    color: var(--text-light);
}

.carousel-caption p {
    font-size: var(--font-body-lg);
    font-family: var(--font-secondary);
    font-weight: 500;
    line-height: 28px;
    color: var(--color-primary);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.carousel-control-next,
.carousel-control-prev {
    opacity: 0.5;
    width: 40px;
}

.carousel-control-next:hover,
.carousel-control-prev:hover {
    opacity: 1;
}

.carousel-control-next-icon,
.carousel-control-prev-icon {
    filter: brightness(0) saturate(100%) invert(76%) sepia(50%) saturate(500%) hue-rotate(10deg);
    width: 16px;
    height: 16px;
}

/* ══════════════════════════════════════
   FOOTER
   ══════════════════════════════════════ */

footer {
    background: var(--accent-color-fourth);
    position: relative;
}

footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
}

.footerlogo img {
    max-height: 80px;
    width: auto;
}

.footernav {
    max-width: 630px;
    margin: 0 auto;
    width: 100%;
    border-width: 1px 0;
    border-style: solid;
    border-color: rgba(255, 255, 255, 0.08);
}

.footernav ul li a {
    color: var(--text-muted);
    font-size: var(--font-body-sm);
    font-family: var(--font-secondary);
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footernav ul li a:hover {
    color: var(--color-primary);
}

.copyright {
    color: rgba(255, 255, 255, 0.35);
    font-size: var(--font-body-sm);
    font-family: var(--font-secondary);
}

.copyright a {
    color: rgba(255, 255, 255, 0.35);
    text-decoration: none;
    transition: color 0.3s ease;
}

.copyright a:hover {
    color: var(--color-primary);
}

/* ══════════════════════════════════════
   UTILITIES / MISC
   ══════════════════════════════════════ */

.grayscale {
    position: relative;
    z-index: 1;
}

.gold-accent-line {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
}
