/* Brand Fresh CSS - Built from scratch */
/* Using shared .container from style.css */

/* Hero Section */
#hero {
    background: white;
    padding: 120px 0 60px 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Using shared hero-title class from style.css */

/* Hero text styles moved to shared style.css */

.image-side {
    display: flex;
    justify-content: flex-end;
}

.image-side img {
    width: 90%;
    height: auto;
    max-height: 650px;
    border-radius: 12px;
    margin-top: 25px;
    object-fit: cover;
}

/* Separator */
.separator {
    text-align: center;
    padding: 40px 0;
    background: white;
}

.separator hr {
    border: none;
    height: 2px;
    background: #E5E5E5;
    width: 100%;
    margin: 0;
}

/* Stats Section */
#statistics {
    background: #FFF6ED;
    padding: 60px 0;
}

.stats-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: center;
    gap: 30px;
}

.stat {
    flex: 1;
}

.stat-separator {
    height: 60px;
    width: auto;
}

.stat h3 {
    font-size: 56px;
    color: #F88C44;
    margin: 0 0 10px 0;
    font-weight: 400;
}

.stat p {
    font-size: 16px;
    color: #F88C44;
    margin: 0;
    line-height: 1.4;
}

/* About Section */
#about {
    background: white;
    padding: 80px 0;
}

.about-grid {
    display: flex;
    align-items: flex-start;
    gap: 60px;
}

.mission,
.vision {
    flex: 1;
}

.mission-separator {
    height: 200px;
    width: auto;
    align-self: flex-start;
    margin-top: 40px;
}

.section-icon {
    width: 32px;
    height: 32px;
    margin-bottom: 12px;
}

/* Using shared section-title class from style.css for headings */

.mission p,
.vision p {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
}

/* Diagnosis Section */
#diagnosis {
    background: #FFF6ED;
    padding: 60px 0;
}

.diagnosis-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.diagnosis-left {
    display: flex;
    justify-content: center;
    align-items: center;
}

.diagnosis-left img {
    width: 100%;
    max-width: 400px;
    height: auto;
}

.diagnosis-header {
    color: #F88C44;
    font-size: 16px;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.diagnosis-desc {
    font-size: 18px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 30px;
}

.diagnosis-btn-img {
    max-width: 200px;
    height: auto;
    cursor: pointer;
    transition: transform 0.3s;
}

.diagnosis-btn-img:hover {
    transform: scale(1.05);
}

/* Diagnosis heading adjustments */
.diagnosis-right .crafted-title {
    text-align: left;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.diagnosis-text p {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
}

.service-button {
    display: block;
    max-width: 200px;
    height: auto;
    cursor: pointer;
    transition: transform 0.3s;
}

.service-button:hover {
    transform: scale(1.05);
}

.diagnosis-img img {
    width: 100%;
    max-width: 400px;
    height: auto;
}

/* Products Section */
#products {
    background: white;
    padding: 80px 0;
    text-align: center;
    clear: both;
    display: block;
}

/* Products section debugging */
#products {
    background: white !important;
    padding: 80px 0 !important;
    text-align: center !important;
    display: block !important;
}

.product-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 30px !important;
    margin-bottom: 50px !important;
    visibility: visible !important;
}

.product-item {
    display: block !important;
    visibility: visible !important;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

/* Force visibility of product grid */
.product-grid .product-item {
    display: block !important;
    visibility: visible !important;
}

.product-item {
    text-align: left;
    background: transparent;
    padding: 0;
}

.product-item img {
    width: 100%;
    height: 320px;
    object-fit: contain;
    margin-bottom: 0.75rem;
}

.product-item h3 {
    font-size: 0.875rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    color: #2B2B2B;
    line-height: 1.3;
}

.product-price {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0.5rem;
}

.price-current {
    color: #F88C44;
    font-weight: bold;
}

.price-original {
    color: #999;
    text-decoration: line-through;
}

.dots {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
}

.dot.active {
    background: #F88C44;
    width: 25px;
    border-radius: 5px;
}

/* Dealer Section - now in shared style.css */

/* Newsletter and Footer sections are now in shared style.css */