:root {
    --gold: #F4C430;
    /* Skrinshotdagi sariqroq tilla rang */
    --text-dark: #333;
    --text-gray: #777;
    --border-color: #E0E0E0;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    background: #fff;
    margin: 0;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header (Minimal) */
header {
    background: #3D3A36;

    color: #fff;
    font-size: 14px;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-inner nav a {
    margin: 0 15px;
    color: #fff;
}

/* --- PRODUCT WRAPPER --- */
.product-wrapper {
    display: flex;
    gap: 40px;
    padding: 50px 0;
    align-items: flex-start;
}

/* GALLERY (LEFT) */
.gallery-section {
    width: 50%;
}

.main-visual {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

/* Vertical Colors */
.vertical-colors {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding-top: 20px;
}

.v-dot {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    transition: 0.3s;
}

.v-dot.white {
    background: #fff;
    border: 1px solid #ccc;
}

.v-dot.cream {
    background: #FAEBD7;
}

.v-dot.beige {
    background: #D2B48C;
}

.v-dot.brown {
    background: #8B7355;
}

.v-dot.brown-light {
    background: #A08060;
}

.v-dot.peach {
    background: #FFDAB9;
}

.v-dot.active {
    transform: scale(1.1);
    border: 2px solid #333;
}

.v-dot.active span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 12px;
    font-weight: bold;
}

/* Large Image */
.large-image {
    flex-grow: 1;
    width: 562px;
    height: 550px;
    overflow: hidden;
    position: relative;
}

.large-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.logo-watermark {
    position: absolute;
    top: 10px;
    left: 10px;
    opacity: 0.7;
    width: 40px;
    width: 103px;
    height: 88px;
}

/* Thumbnails */
.thumbnails {
    display: flex;
    gap: 15px;
    padding-left: 70px;
    /* Ranglar tagi bo'sh qolishi uchun */
}

.thumb {
    width: 221px;
    height: 170px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid #3333331a;
}

.thumb.active {
    border-color: #333;
}

.thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-thumb {
    position: relative;
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 20px;
    background: rgba(0, 0, 0, 0.5);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* INFO SECTION (RIGHT) */
.info-section {
    width: 50%;
}

.breadcrumb {
    color: rgba(47, 47, 47, 0.70);
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    /* 22.4px */
}

.p-title {
    color: #2F2F2F;
    font-family: Montserrat;
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
    margin-top: 12px;
    /* 50.4px */
}

.p-collection {
    color: #FFB902;
    font-family: Montserrat;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    margin-top: 9px;
    /* 28px */
}

.p-collection span {
    color: #FFB902;
    font-family: Montserrat;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
}

.p-price {
    color: #2F2F2F;
    font-family: Montserrat;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
    margin-top: 19px;
    /* 28px */
}

.p-price .light {
    color: rgba(47, 47, 47, 0.70);
    font-family: Montserrat;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
}

.p-desc {
    color: rgba(47, 47, 47, 0.70);
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    margin-top: 45px;
    /* 22.4px */
}

/* Feature Icons */
.features-row {
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
    margin-bottom: 30px;
}

.feat-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    width: 25%;
    border-left: 1px solid #FFB902;
    border-right: 1px solid #FFB902;
    padding: 15px;
    margin: 40px 0px;
}

.feat-box:last-child {
    border-right: 1px solid #FFB902;
}

.feat-box span {
    font-size: 12px;
    color: #555;
    line-height: 1.2;
}

.gold-icon {
    color: var(--gold);
    font-size: 24px;
}


/* Table */
.spec-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
   
}

.spec-table td {
    padding: 15px;
    font-size: 14px;
    border: 1px solid #f2f2f2;
}

.spec-table td:first-child {
    color: #888;
    width: 50%;
}

.spec-table td:last-child {
    font-weight: 500;
    color: #333;
}

/* Button */
.calc-btn {
    display: flex;
    width: 330px;
    height: 43px;
    padding: 10px 45px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 10px;
    border: 0.85px solid rgba(47, 47, 47, 0.60);
    background: rgba(47, 47, 47, 0.15);
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(2px);
    cursor: pointer;
    color:#2F2F2F;
	
}

.calc-icon {
    display: flex;
    width: 31px;
    height: 31px;
    padding: 11px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    border-radius: 24px;
    background: linear-gradient(0deg, #F1DC67 0%, #825505 100%);
    
}

/* Bottom Text */
.bottom-text {
    color:#ccc;
font-family: Montserrat;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 140%; /* 22.4px */
margin-top: 103px;
margin-bottom: 158px;
}

.divider {
    height: 1px;
    background: var(--gold);
    margin-bottom: 50px;
    opacity: 0.5;
}

/* --- SIMILAR PRODUCTS --- */
.similar-products h2 {
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 30px;
}

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

.sim-card {
    cursor: pointer;
}

.sim-img {
    height: 350px;
    background: #eee;
    position: relative;
    overflow: hidden;
    margin-bottom: 15px;
}

.sim-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.badge-gold {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 30px;
    height: 30px;
}

.sim-info h3 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 5px;
}

.sim-col {
    font-size: 11px;
    color: var(--gold);
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.sim-price {
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 8px;
}

.sim-price span {
    font-weight: 400;
    font-size: 11px;
    color: #999;
}

.sim-dots {
    display: flex;
    gap: 5px;
}

.sim-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 1px solid #ddd;
}
.classform h2{
   font-family: Questrial;
font-weight: 400;
font-style: Regular;
font-size: 48px;

line-height: 100%;
letter-spacing: 0%;
vertical-align: middle;


}
.classform h2 span{
    display:block;
    font-family: Great Vibes;
font-weight: 400;
font-style: Regular;
font-size: 96px;

line-height: 100%;
letter-spacing: 0%;
vertical-align: middle;

}
/* --- FOOTER (Dark) --- */
footer {
    background: #2C2C2C;
    color: #ccc;
    padding: 60px 0 20px;
    font-size: 13px;
    margin-top: 60px;
}

.footer-cont {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #444;
    padding-bottom: 40px;
}

.f-left {
    width: 20%;
}

.f-links {
    width: 75%;
    display: flex;
    justify-content: space-between;
}

.fl-col h4 {
    color: #fff;
    margin-bottom: 20px;
    font-weight: 400;
}

.fl-col ul li {
    margin-bottom: 10px;
}

.f-socials {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-end;
}

.f-socials a {
    color: #fff;
    font-size: 18px;
}

.f-bottom {
    text-align: center;
    padding-top: 20px;
    color: #555;
    font-size: 11px;
    letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 900px) {
    .product-wrapper {
        flex-direction: column;
    }

    .gallery-section,
    .info-section {
        width: 100%;
    }

    .similar-grid {
        grid-template-columns: 1fr 1fr;
    }
}
.classform .row{
    display:grid;
    grid-template-columns:40% 55%;
    grid-gap:20px;
}
.classform .wpcf7{
    background: #E7E2D833;;
    padding: 50px;
    box-shadow: 0px 2px 9.1px 0px #00000040;

    
}
.classform .forminput label{
    font-family:'Questrial';
    margin:10px 0
}
.classform .forminput input{
    border:1px solid #2F2F2F99;
    border-radius:10px;
}
.buttongroup p{
 display:flex;

align-items:center;
background: #2F2F2F26;
padding:10px;
justify-content:center;

    width:60%;
    margin:0 auto;
    border-radius:10px


}
.buttongroup br,.wpcf7-spinner{
    display:none;
}
.imgbutton{
    width:40px;
    height:40px;
}
.buttongroup .buttonclass{
    border:none;
    width:%;
    color:#2F2F2F
}
@media (max-width: 768px){
.classform .row{
    grid-template-columns:1fr
}
	.classform h2{
   font-family: Questrial;
font-weight: 400;
font-style: Regular;
font-size: 50px;

line-height: 100%;
letter-spacing: 0%;
vertical-align: middle;


}
.classform h2 span{
    display:block;
    font-family: Great Vibes;
font-weight: 400;
font-style: Regular;
font-size: 64px;

line-height: 100%;
letter-spacing: 0%;
vertical-align: middle;

}

}


