* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* BODY */
body {
    font-family: Georgia, serif;
    background-color: #ffffff;
}

/* HEADER */
.header {
    background-color: #1a3a6b;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header .logo img {
    height: 70px;
    width: auto;
}

.header .site-name h1 {
    color: #ffffff;
    font-size: 28px;
}

.header .site-name p {
    color: #c9a84c;
    font-size: 13px;
    letter-spacing: 2px;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-item{
    text-align: center;
}

.social-item img {
    width: 38px;
    height: 38px;
    border-radius: 5px;
}

.social-item p {
    color: #ffffff;
    font-size: 11px;
    margin-top: 3px;
}

/* NAVIGATION BAR */
.navbar {
    background-color: #1a3a6b;
    display: flex;
    justify-content: center;
}

.navbar a{
    color: #ffffff;
    text-decoration: none;
    padding: 14px 30px;
    font-size: 15px;
    letter-spacing: 1px;
}

.navbar a:hover {
    background-color: #c9a84c;
    color: #ffffff;
}

.navbar a.active {
    background-color: #c9a84c;
    color: #1a3a6b;
    font-weight: bold;
}

/* HERO SECTION */
.hero {
    background-color: #1a3a6b;
    color: #ffffff;
    text-align: center;
    padding: 60px 20px;
}
.hero h2 {
    font-size: 36px;
    color: #c9a84c;
    margin-bottom: 15px;
}

.hero p {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 10px;
}

.hero-btn {
    background-color: #c9a84c;
    color: #ffffff;
    padding: 12px 35px;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    border-radius: 5px;
    display: inline-block;
    margin-top: 15px;
}

.hero-btn:hover {
    background-color: #ffffff;
    color: #1a3a6b;
}

/* VIDEO SECTION */
.video-section  {
    text-align: center;
    padding: 30px 20px;
    background-color: #ffffff;
}

.video-section video {
    width: 70%;
    max-width: 700px;
    height: auto;
    border: 4px solid #ffffff;
    border-radius: 8px;
}

/* DISCOUNT BANNER */
.discount-banner {
    text-align: center;
    background-color: #c9a84c;
    color: #ffffff;
    padding: 15px;
    font-size: 22px;
    font-weight: bold;
    letter-spacing: 1px;
}

/* SECTION TITLE */
.section-title {
    text-align: center;
    padding: 70px 20px 15px;
    font-size: 28px;
    font-weight: bold;
    color: #1a3a6b;
    margin: 0 40px 50px;
}

.section-title ::after {
    content: "";
    display: block;
    width: 80px;
    height: 3px;
    background-color: #c9a84c;
    margin: 10px auto 0;
}

/* PRODUCT SECTION */
.products-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    padding: 20px 40px 40px;
    background-color: #f5f5f5;
}

/* PRODUCT VARIANT TEXT */
.variant {
    font-size: 12px;
    color: #c9a84c;
    font-weight: bold;
    letter-spacing: 1px;
    margin-bottom: 5px;
    text-transform: uppercase;
}

/* 50% OFF BADGE */
.product-card {
    position: relative;
}

.badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #c9a84c;
    color: #ffffff;
    font-size: 12px;
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 5px;
}
/* PRODUCT CARD */
.product-card {
    background-color: #ffffff;
    border: 1px solid #dddddd;
    border-radius: 10pX;
    width: 220px;
    text-align: center;
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(26, 58, 107, 0.2);
}

.product-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 10px;
}

.product-card h3 {
    font-size: 15px;
    color: #1a3a6b;
    font-weight: bold;
    margin-bottom: 8px;
}

.product-card .price {
    font-size: 16px;
    color: #1a3a6b;
    font-weight: bold;
    margin-bottom: 12px;
}

/* BUTTON */
.btn {
    background-color: #c9a84c;
    color: #ffffff;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 14px;
    font-weight: bold;
    display: inline-block;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #1a3a6b;
    color: #ffffff;
}

/* FEEDBACK SECTION */
.feedback-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    padding: 20px 40px 40px;
    background-color: #ffffff;
}

/* FEEDBACK CARD */
.feedback-card {
    background-color: #f5f5f5;
    border-top: 4px solid #c9a84c;
    border-radius: 10px;
    width: 200px;
    text-align: center;
    padding: 20px 15px;
}

.feedback-card img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
    border: 3px solid #1a3a6b;
}

.feedback-card h3 {
    font-size: 15px;
    color: #1a3a6b;
    font-weight: bold;
    margin-bottom: 8px;
}

.review {
    font-size: 13px;
    color: #555555;
    font-style: italic;
    margin-top: 8px;
    line-height: 1.5;
}

/* STAR RANTINGS */
.stars {
    color: #c9a84c;
    font-size: 18px;
    margin-bottom: 10px;
}

/* FOOTER */
.footer {
    background-color: #1a3a6b;
    color: #ffffff;
    text-align: center;
    padding: 20px;
    font-size: 14px;
}

.footer span {
    color: #c9a84c;
    font-weight: bold;
}

/* DETAILS PAGE */
.details-section {
    display: flex;
    gap: 40px;
    padding: 30px 40px;
    background-color: #ffffff;
}

/* GALLERY LEFT SIDE */
.gallery {
    width: 50%;
}

.main-image img {
    width: 100%;
    height: 300px;
    object-fit: contain;
    border-radius: 10px;
    border: 3px solid #c9a84c;
    margin-bottom: 15px;
    background-color: #ffffff;
}

.thumbnails {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.thumb {
    width: 80px;
    height: 70px;
    object-fit: cover;
    border-radius: 5px;
    border: 2px solid #dddddd;
    cursor: pointer;
    transition: border 0.3s;
}

.thumb:hover {
    border: 2px solid #c9a84c;
}

/* DETAILS INFO RIGHT SIDE */
.details-info {
    width: 50%;
}

.details-info h2 {
    font-size: 26px;
    color: #1a3a6b;
    margin-bottom: 5px;
}

.details-desc {
    font-size: 14px;
    color: #555555;
    line-height: 1.7;
    margin: 15px 0;
}

.features-list {
    color: #1a3a6b;
    font-size: 14px;
    margin: 10px 0 20px 20px;
    line-height: 2;
}

/* SPECIFICATIONS TABLE */
.specs-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

.specs-table tr {
    border-bottom: 1px solid #dddddd;
}

.specs-table td {
    padding: 10px;
    font-size: 14px;
    color: #1a3a6b;
}

.specs-table td:first-child {
    font-weight: bold;
    width: 40%;
    background-color: #f5f5f5;
}

/* QUANTITY INPUT */
.qty-input {
    width: 80px;
    padding: 8px;
    border: 2px solid #1a3a6b;
    border-radius: 5px;
    font-size: 16px;
    text-align: center;
}

/* CART SECTION */
.cart-section {
    display: flex;
    gap: 30px;
    padding: 30px 40px;
    background-color: #ffffff;
}

/* CART TABLE */
.cart-table-div {
    flex: 2;
}

.cart-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
}

/* CART TABLE HEADER */
.cart-header {
    background-color: #1a3a6b;
    color: #ffffff;
}

.cart-header th {
    padding: 15px;
    text-align: center;
    font-size: 14px;
}

/* CART ITEMS */
.cart-item {
    border-bottom: 1px solid #dddddd;
    text-align: center;
}

.cart-item td {
    padding: 15px;
}

.cart-img {
    width: 80px;
    height: 70px;
    object-fit: contain;
    border-radius: 5px;
    background-color: #f5f5f5;
}

.cart-name {
    font-size: 14px;
    font-weight: bold;
    color: #1a3a6b;
    margin-bottom: 4px;
}

.cart-price {
    font-size: 14px;
    color: #1a3a6b;
    font-weight: bold;
}

.cart-qty {
    width: 60px;
    padding: 5px;
    border: 2px solid #1a3a6b;
    border-radius: 5px;
    text-align: center;
    font-size: 14px;
}

/* REMOVE BUTTON */
.btn-remove {
    background-color: #ff0000;
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 13px;
    transition: background-color 0.3s;
}

.btn-remove:hover {
    background-color: #cc0000;
}

/* GRAND TOTAL ROW */
.cart-total-row {
    background-color: #f5f5f5;
}

.cart-total-row td {
    padding: 15px;
    font-size: 16px;
    color: #1a3a6b
}

/* CART SUMMARY BOX */
.cart-summary {
    flex: 1;
    background-color: #ffffff;
    border-radius: 10px;
    padding: 25px;
    height: fit-content;
    border-top: 4px solid #c9a84c;
}

.cart-summary .btn{
    width: 100%;
    text-align: center;
    display: block;
    padding: 15px;
    margin-bottom: 10px;
}

.cart-summary h3 {
    color: #1a3a6b;
    font-size: 20px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom:2px solid #f5f5f5;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    font-size: 14px;
    color: #555555;
    border-bottom: 1px solid #f5f5f5;
}

.summary-row.total {
    font-size: 18px;
    font-weight: bold;
    color: #1a3a6b;
    border-bottom: none;
    margin-top: 10px;
}

/* CHECKOUT SECTION */
.checkout-section {
    display: flex;
    gap: 30px;
    padding: 30px 40px;
    background-color: #f5f5f5;
}

.checkout-left {
    flex: 2;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.checkout-right {
    flex: 1;
}

/* CHECKOUNT BOX */
.checkout-box {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 25px;
    border-top: 4px solid #c9a84c;
}

.checkout-box h3 {
    color: #1a3a6b;
    font-size: 20px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f5f5f5; 
}

/* ACCEPTED CARDS */
.accepted-cards {
    font-weight: bold;
    color: #1a3a6b;
    margin-bottom: 10px;
}

.card-logos {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.card-logos img {
    border-radius: 5px;
    border: 1px solid #dddddd;
    padding: 3px;
}

/* ORDER ITEMS */
.order-item {
    display: flex;
    align-items: center;
    gap: 15px; 
    padding: 10px 0;
    border-bottom: 1px solid #f5f5f5;
}

.order-img {
    width: 60px;
    height: 50px;
    object-fit: contain;
    border-radius: 5px;
    background-color: #f5f5f5;
}

/* FORM GROUP */
.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    font-weight: bold;
    color: #1a3a6b;
    margin-bottom: 5px;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    display: block;
    width: 100%;
    padding: 10px;
    border: 1px solid #cccccc;
    border-radius: 5px;
    font-size: 14px;
    font-family: Georgia, serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
     outline: none;
     border-color: #1a3a6b;
     border-width: 2px;
}

/* SUCCESS PAGE */
.success-section {
    text-align: center;
    padding: 50px 40px;
    background-color: #ffffff;
}

.success-icon {
    font-size: 80px;
    color: green;
    margin-bottom: 20px;
}

.success-section h2 {
    font-size: 32px;
    color: #1a3a6b;
    margin-bottom: 10px;
}

.success-section p {
    font-size: 16px;
    color: #555555;
    margin-bottom: 5px;
}

.success-box {
    background-color: #f5f5f5;
    border-radius: 10px;
    border-top: 4px solid #c9a84c;
    padding: 25px;
    max-width: 500px;
    margin: 30px auto;
    text-align: left;
}

.success-box h3 {
    color: #1a3a6b;
    margin-bottom: 20px;
    font-size: 20px;
}

/* STATS SECTION */
.stats-section {
    display: flex;
    justify-content: center;
    gap: 25px;
    padding: 30px 40px;
    background-color: #1a3a6b;
}

.stat-card {
    text-align: center;
    color: #ffffff;
    padding: 20px 40px;
    border-right: 1px solid rgba(225, 225, 225, 0.2);
}

.stat-card:last-child {
    border-right: none;
}

.stat-card h2 {
    font-size: 40px;
    color: #c9a84c;
    margin-bottom: 5px;
}

.stat-card p {
    font-size: 14px;
    color: #ffffff;
}

/* CLIENT SECTION */
.client-section {
    display: flex;
    gap: 30px;
    padding: 30px 40px;
    background-color: #f5f5f5;
    overflow: hidden;
}

.client-form-box {
    flex: 1;
    min-width: 0;
    background-color: #ffffff;
    border-radius: 10px;
    padding: 25px;
    border-top: 4px solid #c9a84c;
}

.client-form-box h3 {
    color: #1a3a6b;
    font-size: 20px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f5f5f5;
}

.client-why-box {
    flex: 1;
    background-color: #ffffff;
    border-radius: 10px;
    padding: 25px;
    border-top: 4px solid #1a3a6b;
    height: fit-content;
}

.client-why-box h3 {
    color: #1a3a6b;
    font-size: 20px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f5f5f5;
}

/* WHY ITEMS */
.why-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f5f5f5;
}

.why-icon {
    color: #c9a84c;
    font-size: 20px;
    font-weight: bold;
}

.why-item p {
    font-size: 14px;
    color: #555555;
    line-height: 1.5;
}

/* CLIENT TABLE */
.cart-table-div {
    padding: 20px 40px 40px;
    background-color: #f5f5f5;
}

.client-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
}

.cart-table td {
    padding: 15px;
    text-align: center;
    font-size: 14px;
    color: #1a3a6b;
}

/* STATUS BADGES */
.status-active {
    color: green;
    font-weight: bold;
}

.status-completed {
    color: #1a3a6b;
    font-weight: bold;
}

/* ABOUT SECTION */
.about-section {
    display: flex;
    gap: 40px;
    padding: 40px;
    background-color: #ffffff;
    align-items: center;
}

.about-image {
    width: 40%;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    border: 3px solid #c9a84c;
}

.about-text {
    width: 60%;
}

.about-text h2 {
    font-size: 28px;
    color: #1a3a6b;
    margin-bottom: 15px;
}

.about-text p {
    font-size: 15px;
    color: #555555;
    line-height: 1.8;
}

/* MISSION SECTION */
.mission-section {
    display: flex;
    gap: 25px;
    padding: 20px 40px 40px;
    background-color: #f5f5f5;
    align-items: stretch;
}

.mission-card {
    flex: 1;
    min-width: 0;
    background-color: #ffffff;
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    border-top: 4px solid #c9a84c;
    overflow: hidden;
}

.mission-card p {
    font: 14px;
    color: #555555;
    line-height: 1.7;
    text-align: center;
}

.mission-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.mission-card h3 {
    color: #1a3a6b;
    font-size: 18px;
    margin-bottom: 10px;
}

.mission-card p {
    font-size: 14px;
    color: #555555;
    line-height: 1.7;
}

/* WHY CHOOSE US */
.why-section {
    display: flex;
    gap: 25px;
    padding: 20px 40px 40px;
    background-color: #f5f5f5;
    align-items: stretch;
}

.why-choose-card {
    flex: 1;
    background-color: #ffffff;
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    border-top: 4px solid #c9a84c;
}

.why-choose-card h3 {
    color: #1a3a6b;
    font-size: 18px;
    margin-bottom: 10px;
}

.why-choose-card p {
    font-size: 14px;
    color: #555555;
    line-height: 1.7;
}

/* CONTACT CARDS */
.contact-cards {
    display: flex;
    gap: 20px;
    padding: 30px 40px;
    background-color: #f5f5f5;
}

.contact-card {
    flex: 1;
    background-color: #ffffff;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    border-top: 4px solid #c9a84c;
}

.contact-card h3 {
    color: #1a3a6b;
    font-size: 16px;
    margin-bottom: 10px;
    margin-top: 10px;
}

.contact-card p {
    color: #555555;
    font-size: 13px;
    margin-bottom: 5px;
    line-height: 1.7;
}

/* CONTACT SECTION */
.contact-section {
    display: flex;
    gap: 30px;
    padding: 30px 40px;
    background-color: #f5f5f5;
}

.contact-form-box {
    flex: 1;
    background-color: #ffffff;
    border-radius: 10px;
    padding: 25px;
    border-top: 4px solid #c9a84c;
}

.contact-form-box h3 {
    color: #1a3a6b;
    font-size: 20px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f5f5f5;
}

.contact-map-box {
    flex: 1;
    background-color: #ffffff;
    border-radius: 10px;
    padding: 25px;
    border-top: 4px solid #1a3a6b;
}

.contact-map-box h3 {
    color: #1a3a6b;
    font-size: 20px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f5f5f5;
}

/* SOCIAL LINKS */
.social-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.social-link {
    display: flex;
    align-self: center;
    gap: 10px;
    padding: 10px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    transition: opacity 0.3s;
    width: 100%;
}

.social-link:hover {
    opacity: 0.8;
}

.facebook {
    background-color: #1877f2;
    color: #ffffff;
}

.instagram {
    background-color: #e1306c;
    color: #ffffff;
}

.x {
    background-color: #000000;
    color: #ffffff;
}

.telegram {
    background-color: #0088cc;
    color: #ffffff;
}

/* ERROR MESSAGES */
.error-message {
    color: red;
    display: none;
    font-size: 12px;
    margin-top: 4px;
    font-weight: bold;
}

/* CART ICON */
.cart-icon {
    background-color: #c9a84c;
    color: #1a3a6b !important;
    font-weight: bold;
    border-radius: 5px;
    padding: 5px 15px !important;
}

.cart-icon #cartCount {
    background-color: #1a3a6b;
    color: #ffffff;
    border-radius: 50%;
    padding: 2px 7px;
    font-size: 12px;
    margin-left: 3px;
}

/* BACK TO TOP BUTTON */
#backToTopBtn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #c9a84c;
    color: #1a3a6b;
    border: none;
    padding: 12px 18px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    display: none;
    z-index: 999;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: background-color 0.3s;
}

#backToTopBtn:hover {
    background-color: #1a3a6b;
    color: #ffffff;
}