:root {
    --HeadColor: #007BFF;
    --TextColor: #2d2d2d;
    --TransColor: #004A99;
    --hoverColor: #0062CC;
    --WhiteColor: #fff;
    --Second-Color: #162032;
    --BackgroundColor: #f5f5f5;
    --BorderColor: #ccc;
    --Main-Trans: 0.3s;
    --Second-Trans: 0.5s;
}

body {
    display: flex;
    flex-direction: column;
    font-family: "Poppins", sans-serif;
}

body , html {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow-x: hidden;
}

::-webkit-scrollbar {
    width: 11px;
}

::-webkit-scrollbar-track {
    background: var(--BorderColor);
}

::-webkit-scrollbar-thumb {
    background: var(--hoverColor);
    border-radius: 10px;
    border: 2px solid var(--BorderColor);
}

::-webkit-scrollbar-thumb:hover {
    background-color: var(--HeadColor);
}

main {
    flex: 1;
}

.Container {
    margin: 20px 75px;
}

.Heading {
    font-family: 'Fraunces', serif;
    display: flex;
    justify-content: center;
    width: fit-content;
    font-size: 48px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding-bottom: 12px;
    margin: 50px auto 65px;
    border-bottom: none;
    position: relative;
}

.Heading::after {
    content: '';
    position: absolute;
    bottom: 0; 
    left: 0;
    width: 100%; 
    height: 2px;
    background: linear-gradient(to right, transparent, var(--HeadColor), transparent);
}

.border {
    width: 100%;
    border-top: 1px solid #ccc;
}
/* Start Header */

.Header {
    display: flex;
    justify-content: space-between;
}

.Header .Flex {
    display: flex;
    align-items: center;
    position: relative;
    justify-content: flex-end;
    flex: 1;
}

.Header .WebName {
    display: flex;
    align-items: center;
}

.Header .WebName h1 {
    color: var(--TransColor);
}

.Header .WebName h1 span , .Header .WebName i  {
    color: var(--HeadColor);
}

.Header .WebName .Cart {
    font-size: 25px;
}

.Header .Sections {
    display: flex;
    align-items: center;
    list-style: none;
}

.Header .Sections li {
    margin: 0 30px;
}

.Header .Sections li a {
    text-decoration: none;
    font-size: 20px;
    color: var(--TextColor);
    font-weight: 600;
    transition: var(--Main-Trans);
}

.Header .Sections li:hover a {
    color: var(--HeadColor);
}

.Header .Sections .CheckoutIcon a {
    font-size: 30px;
}

.Header .SearchIcon {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--HeadColor);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: var(--Second-Trans);
    color: var(--WhiteColor);
    cursor: pointer;
}

.Header .SearchIcon:hover {
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.4);
}

.SearchBar {
    display: none;
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    border: 2px solid transparent;
    background: linear-gradient(white,white) padding-box, linear-gradient(135deg,#007BFF,#00c6ff) border-box;
}

.Header .SearchField {
    border: none;
    flex: 1;
    outline: none;
    caret-color: var(--HeadColor);
}

.Header .SearchField::placeholder {
    color: #777;
}

body.Head-Active .Header .Sections , body.Head-Active .Header .WebName {
    display: none;
}

body.Head-Active .SearchBar {
    display: flex;
}

body.Head-Active .SearchIcon {
    margin-left: 15px;
}

body.Head-Active .Icon-List {
    display: none;
}

.Header .Icon-List {
    display: none;
}


/* Small */
@media (max-width: 992px) {
    .Header {
        margin: 25px 35px 15px;
        position: relative;
    }
    .Header .Icon-List {
        display: flex;
        align-items: center;
        font-size: 30px;
        margin-left: 10px;
        color: var(--TextColor);
        cursor: pointer;
        transition: var(--Main-Trans);
    }
    .Header .Icon-List:hover {
        color: var(--HeadColor);
    }
    body.List-Click .Icon-List {
        position: absolute;
        left: 0;
        z-index: 1003;
    } 
    body.List-Click .WebName {
        display: none;
    }
    .Header .Sections {
        opacity: 0;
        visibility: hidden;
        position: absolute;
        pointer-events: none;
        transition: var(--Second-Trans);
    }
    body.List-Click .Header .Sections{
        opacity: 1;
        visibility: visible;
        flex-direction: column;
        top: 140%;
        left: -2%;
        margin: 0;
        width: calc(100vw - 150px);
        pointer-events: all;
        z-index: 1000;
    }
    body.List-Click .Header .Sections li {
        width: 100%;
        padding: 15px;
        border-radius: 3px;
        text-align: left;
        cursor: pointer;
        margin: 0;
        transition: var(--Second-Trans);
        background-color: rgba(255, 255, 255, 0.95);
        border: 1px solid rgba(0, 123, 255, 0.2);
        backdrop-filter: blur(100px);
    }
    body.List-Click .Header .Sections li:hover {
        background-color: rgba(0, 123, 255, 0.08);  
    }
    body.List-Click .Header .Sections li a {
        color: #1a1a1a;;
    }
    body.List-Click .Header .Sections li:hover a {
        color: var(--HeadColor);
    }
    body.List-Click .Header .Sections::before {
        content: "";
        border-width: 15px;
        border-style: solid;
        border-color: transparent transparent rgba(200, 190, 180, 0.4) transparent;
        position: absolute;
        left: 23px;
        top: -13%;
    }

}
/* End Header */

/* Start Landing */
.Landing {
    position: relative;
    height: 650px;
}

.Landing .Image {
    width: 100%;
    height: 100%;
}

.Landing img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.Landing .LandInfo {
    top: 35%;
    left: 3%;
    transform: translateY(-35%);
    position: absolute;
    color: var(--TextColor);
}

.Landing .LandInfo .Head {
    font-size: 70px;
    margin-bottom: 38px;
    font-weight: 600;
}

.Landing .LandInfo .Desc {
    font-size: 43px;
    margin: 0 0 68px 0;
}

.Landing .LandInfo a {
    background-color: var(--TransColor);
    color: var(--WhiteColor);
    text-decoration: none;
    padding: 19px 65px;
    border-radius: 8px;
    font-size: 30px;
    transition: var(--Main-Trans);
}

.Landing .LandInfo a:hover {
    background-color: var(--hoverColor);
}

/* Large */
@media (max-width: 1200px) {
    .Landing .LandInfo .Head {
        font-size: 65px;
    }
    .Landing .LandInfo .Desc {
        font-size: 40px;
    }
    .Landing .LandInfo a {
        font-size: 25px;
        padding: 17px 50px;
    }
}

/* Small */
@media (max-width: 768px) {
    .Landing .LandInfo {
        display: flex;
        flex-direction: column;
        justify-content: center;
        width: 100%;
    }
    .Landing .LandInfo .Head ,.Landing .LandInfo .Desc, .Landing .LandInfo a{
        text-align: center;
        margin-bottom: 35px;
    }
    .Landing .LandInfo .Head {
        font-size: 55px;
    }
    .Landing .LandInfo .Desc {
        font-size: 38px;
        line-height: 1.2;
    }
    .Landing .LandInfo a {
        margin: auto;
    }
}
/* End Landing */
/* Start Features */

.Features , .AllProducts {
    margin: 75px 30px;
}

.FHead {
    font-size: 35px;
    text-align: center;
    cursor: pointer;
}

.Cards {
    display: grid;
    grid-template-columns: repeat(auto-fill , minmax(300px , 1fr));
    gap: 40px;
}

.Cards .Card {
    cursor: pointer;
    border: 1px solid #ccc;
    border-radius: 10px;
    box-shadow: 
    0 4px 15px rgba(0, 123, 255, 0.1),
    0 2px 6px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.Cards .Card:hover {
    box-shadow: 
    0 8px 25px rgba(0, 123, 255, 0.25),
    0 4px 10px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.Cards .Card .Image {
    background-color: var(--BackgroundColor);
}

.Cards .Card img {
    width: 100%;
    height: 300px;
    object-fit: contain;
}
.Cards .Card .ProductInfo {
    display: flex;
    flex-direction: column;
    text-align: center;
    padding: 30px 0;
    color: var(--TextColor);
}

.Cards .Card .ProductInfo .Type {
    margin-top: 0;
}

.Cards .Card .ProductInfo .Type , .Cards .Card .ProductInfo .Price  {
    font-size: 28px;
    font-weight: 600;
    margin-bottom:  15px;
}

.Cards .Card .ProductInfo a {
    color: var(--WhiteColor);
    font-size: 30px;
    background-color: var(--TransColor);
    width: fit-content;
    margin: 0 auto;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 8px;
    transition: var(--Main-Trans);
}

.Cards .Card .ProductInfo a:hover {
    background-color: var(--hoverColor);
}

/* End Features */

/* Start Footer */
.Footer {
    text-align: center;
    background-color: var(--BackgroundColor);
    padding: 4px;
    font-size: 18px;
    border: 1px solid var(--BorderColor);
    font-weight: 600;
}
/* End Footer */

/* Start Product Deatails */
.Details {
    display: flex;
    justify-content: space-between;
    column-gap: 50px;
    margin-top: 50px;
}

.Details .Image {
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    max-width: 35%;
    padding: 40px 75px;
    border-radius: 10px;
    overflow: hidden;
    background-color: var(--BackgroundColor);
}

.Details .Image img {
    object-fit: contain;
    max-width: 500px;
    max-height: 500px;
    width: 100%;
    height: 100%;
}

.Details .Product-Info .P1 , .Details .Product-Info .P2 ,.Details .Product-Info .P3 {
    border-bottom: 1px solid var(--BorderColor);
}

.Details .Product-Info {
    flex: 1;
    color: var(--TextColor);
}

.Details .Product-Info .P1 .PName {
    font-size: 35px;
    font-weight: 600;
}

.Details .Product-Info .P1 .PPrice {
    font-size: 35px;
    font-weight: 600;
}

.Details .Product-Info .P2 .PDescription {
    padding: 10px 0;
    font-size: 18px;
    word-spacing: 10%;
    font-weight: 600;
    line-height: 1.5;
}

.Details .Product-Info .P3 .PColor {
    font-weight: 600;
    font-size: 25px;
} 

.Details .Product-Info .P3 .PColorbtn {
    border: none;
    color: var(--WhiteColor);
    font-size: 22px;
    padding: 10px 25px;
    border-radius: 7px;
    margin: 0 20px 20px 0;
    cursor: pointer;
    font-weight: 600;
    transition: var(--Second-Trans);
}

.Details .Product-Info .P3 .Black {
    background-color: black;
    color: var(--WhiteColor);
}

.Details .Product-Info .P3 .Black:hover {
    background-color: #1d4ed8;
    box-shadow: 
        0 0 12px rgba(29, 78, 216, 0.8),
        0 0 40px rgba(29, 78, 216, 0.5);
}

.Details .Product-Info .P3 .Sliver {
    background-color: #9ca3af;
    color: #1a1a1a;
    box-shadow: 
        0 0 8px rgba(156, 163, 175, 0.5),
        0 0 25px rgba(156, 163, 175, 0.25);
}

.Details .Product-Info .P3 .Sliver:hover {
    background-color: #6b7280;
    color: #fff;
    box-shadow: 
        0 0 10px rgba(107, 114, 128, 0.8),
        0 0 30px rgba(107, 114, 128, 0.5);
}

.Details .Product-Info .P4 {
    margin: 25px 0;
}

.Details .Product-Info .P4 label {
    font-weight: 600;
    font-size: 22px;
    margin-right: 8px;
}

.Details .Product-Info .P4 select {
    padding: 0 10px;
    outline: none;
    border-radius: 5px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.25);
    transition: var(--Second-Trans);
}

.Details .Product-Info .P4 select:focus {
    box-shadow: 
        0 4px 20px rgba(99, 102, 241, 0.5),
        0 0 0 3px rgba(99, 102, 241, 0.15);
}

.Details .Product-Info .P5 {
    margin-top: 25px;
    display: flex;
}

.Details .Product-Info .P5 a {
    text-align: center;
    padding: 18px 75px;
    font-size: 22px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 7px;
    color: var(--WhiteColor);
    background-color: var(--TransColor);
    transition: var(--Second-Trans);
}

.Details .Product-Info .P5 a:hover {
    background-color: var(--hoverColor);
}

/* Large */
@media (max-width: 1200px) {
    .Details .Product-Info .P2 .PDescription {
        font-size: 14px;
    }
}

/* Medium */
@media (max-width: 992px) {
    .Details {
        flex-direction: column;
    }
    .Details .Image {
        margin: 0 auto;
    }
    .Details .Image img{
        width: 300px;
        height: 300px;
    }
    .Details .Product-Info {
        text-align: center;
    }
    .Details .Product-Info .P5 {
        justify-content: center;
    }
}

/* Small */
@media (max-width: 768px) {
    .Details .Image img{
        width: 200px;
        height: 200px;
    }
    .Details .Product-Info .P3 .PColorbtn {
        padding: 5px 10px;
        font-size: 18px;
    }
    .Details .Product-Info .P5 a {
        font-size: 15px;
    }
    .Details .Product-Info .P1 .PName , .Details .Product-Info .P1 .PPrice {
        font-size: 30px;
    }
}
/* End Product Deatails */
/* Start Cart */

.CartHead {
    margin-top: 45px;
    margin-bottom: 35px;
}

.CartHead h1 {
    font-size: 35px;
    font-weight: 600;
    margin: 0;
}

.ShoppingCart .ShopCart {
    display: flex;
    justify-content: space-between;
    padding: 25px 0;
    border-bottom: 1px solid var(--BorderColor);
}

.ShoppingCart .ShopCart {
    border-top: 1px solid var(--BorderColor);
}

.ShoppingCart .ShopCart .Shop {
    display: flex;
    align-items: center;
    column-gap: 30px;
}

.ShoppingCart .ShopCart .ShopImage {
    background-color: var(--BackgroundColor);
    padding: 10px 20px;
    border-radius: 6px;
}

.ShoppingCart .ShopCart img {
    width: 125px;
    height: 125px;
    object-fit: cover;
}

.ShoppingCart .ShopCart .ShopText {
    color: var(--TextColor);
    font-weight: 600;
    font-size: 24px;
}

.ShoppingCart .ShopCart .Edit {
    display: flex;
    align-items: center;    
}

.ShoppingCart .ShopCart .EditText {
    background-color: var(--WhiteColor);
    border: 1px solid var(--BorderColor);
    align-self: center;
    display: flex;
    align-items: center;
    padding: 10px;
    width: 150px;
    border-radius: 7px;
    transition: var(--Second-Trans);

}

.ShoppingCart .ShopCart .EditText:hover {
    box-shadow: 0 0 8px rgba(0, 123, 255, 0.5),
                0 0 20px rgba(0, 123, 255, 0.25);
}

.ShoppingCart .ShopCart .EditText label {
    font-size: 21px;
    font-weight: 600;
}

.ShoppingCart .ShopCart .EditText select {
    border: none;
    outline: none;
    font-size: 21px;
    font-weight: 600;
    margin-left: 5px;
    flex: 1;
    cursor: pointer;
}

.ShoppingCart .ShopCart .EditIcon {
    background-color: var(--hoverColor);
    color: var(--WhiteColor);
    font-size: 20px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 25px;
    cursor: pointer;
    transition: var(--Main-Trans);
}

.ShoppingCart .ShopCart .EditIcon:hover {
    background-color: #e74c3c;
}

.TotalText {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    font-weight: 600;
    border-bottom: 1px solid var(--BorderColor);
    margin: 0 75px;
}

.Total {
    font-size: 30px;
}

.TotalPrice {
    font-size: 38px;
    margin-left: 50px;
}

.Shoppingbtn {
    margin: 20px 75px;
    display: flex;
    justify-content: flex-end;
}

.Shoppingbtn .Clearbtn , .Shoppingbtn .Checkbtn {
    text-decoration: none;
    padding: 18px 75px;
    border-radius: 7px;
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
    border: 1px solid var(--BorderColor);
    transition: var(--Second-Trans);
}   

.Shoppingbtn .Clearbtn {
    background-color: var(--WhiteColor);
    color: var(--HeadColor);
}

.Clearbtn:hover {
    background-color: #e74c3c;
    border-color: #e74c3c;
    color: var(--WhiteColor);
}

.Shoppingbtn .Checkbtn {
    background-color: var(--TransColor);
    color: var(--WhiteColor);
    margin-left: 25px;
}

.Shoppingbtn .Checkbtn:hover {
    background-color: var(--HeadColor);
}

/* Medium */
@media (max-width: 992px) {
    .CartHead h1 {
        text-align: center;
    }
    .ShoppingCart .ShopCart {
        flex-direction: column;
        align-items: center;
    }
    .ShoppingCart .ShopCart .Shop {
        text-align: center;
        margin-bottom: 5px;
        flex-direction: column;
    }
    .TotalText {
        justify-content: center;
    }
    .Shoppingbtn {
        justify-content: center;
    }
    .ShopCart .EditIcon {
        margin-left: 40px;
    }
}

/* Small */
@media (max-width: 768px) {
    .CartHead h1 {
        font-size: 25px;
    }
    .Total {
        font-size: 23px;
    }
    .TotalPrice {
        font-size: 28px;
    }
    .Shoppingbtn .Clearbtn , .Shoppingbtn .Checkbtn {
        padding: 10px;
        font-size: 13px;
    }
}

/* End Cart */

/* Start Checkout */
.CheckOut {
    margin-top: 20px;
    color: var(--TextColor);
    height: 100%;
}

.CheckOut .Recet {
    display: flex;
    justify-content: space-between;
    column-gap: 40px;
    height: 90%;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--BorderColor);
}

.CheckOut .CheckHead {
    font-size: 35px;
    font-weight: 600;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--BorderColor);
}

.CheckOut .Recet .CheckData {
    display: flex;
    flex-direction: column;
    width: 53%;
}

.CheckOut .Recet .CheckData .Cinput {
    display: flex;
    flex-direction: column;
}

.CheckOut .Recet .CheckData .Cinput label {
    font-weight: 600;
}

.CheckOut .Recet .CheckData .Cinput input , .CheckOut .Recet .CheckData .Cinput textarea {
    padding: 15px;
    border-radius: 8px;
    outline: none;
    border: 1px solid var(--BorderColor);
    margin: 10px 0 20px;
    background-color: var(--BackgroundColor);
}

.CheckOut .Recet .CheckData .Cinput textarea {
    resize: none;
    height: 300px;
}

.CheckOut .CheckResult {
    display: flex;
    flex-direction: column;
    width: 46%;
    padding: 15px 30px;
    border-radius: 8px;
    background-color: var(--BackgroundColor);
    margin-top: 70px;
    border: 1px solid var(--BorderColor);
    overflow-y: scroll;
}

.CheckOut .CheckResult::-webkit-scrollbar {
    width: 8px;
}

.CheckOut .CheckResult::-webkit-scrollbar-track {
    background: transparent;
}

.CheckOut .CheckResult::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, #93c5fd, #3b82f6, #1d4ed8);
    border-radius: 99px;
}

.CheckOut .CheckResult::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(to bottom, #60a5fa, #2563eb, #1e40af);
    box-shadow: 0 0 8px rgba(59, 130, 246, 0.7);
}

.CheckOut .CheckResult h1 {
    font-size: 28px;
    font-weight: 600;
    border-bottom: 1px solid var(--BorderColor);
    padding: 30px 0;
    margin: 0;
}

.CheckOut .CheckResult .CheckP {
    font-size: 18px;
    font-weight: 600;
    display: flex;
    justify-content: space-between; 
    border-bottom: 1px solid var(--BorderColor);
    padding: 25px 0;
    margin: 0;
}

.CheckOut .CheckButton {
    display: flex;
    margin: 25px auto;
    padding: 20px 80px;
    border-radius: 10px;
    border: none;
    color: var(--WhiteColor);
    font-size: 22px;
    font-weight: 600;
    cursor: pointer;
    background-color: var(--TransColor);
    transition: var(--Second-Trans);
}

.CheckOut .CheckButton:hover {
    background-color: var(--hoverColor);
}

/* Medium */
@media (max-width: 992px) {
    .CheckOut {
        height: 100%;
    }
    .CheckOut .Recet {
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
    }
    .CheckOut .CheckHead {
        text-align: center;
        margin-bottom: 35px;
        padding-bottom: 25px;
    }
    .CheckOut .Recet .CheckData {
        width: 100%;
    }
    .CheckOut .CheckResult {
        margin-top: 25px;
        flex: 1;
        width: 100%;
        box-sizing: border-box;
    }
    .CheckOut .CheckResult h1 {
        text-align: center;
    }
}

/* Small */
@media (max-width: 768px) {
    .CheckOut {
        margin: 20px;
    }
    .CheckOut .CheckResult .CheckP {
        font-size: 15px;
    }
}

/* End Checkout */
